os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt2643.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2007 Sep 12
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code. In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
#
sl@0
    12
# This file is to test that ticket #2643 has been fixed.
sl@0
    13
#
sl@0
    14
# $Id: tkt2643.test,v 1.1 2007/09/13 17:54:41 drh Exp $
sl@0
    15
#
sl@0
    16
sl@0
    17
# The problem in ticket #2643 has to do with the query optimizer
sl@0
    18
# making bad assumptions about index cost when data from ANALYZE
sl@0
    19
# is available.
sl@0
    20
sl@0
    21
set testdir [file dirname $argv0]
sl@0
    22
source $testdir/tester.tcl
sl@0
    23
sl@0
    24
do_test tkt2643-1.1 {
sl@0
    25
  execsql {
sl@0
    26
    CREATE TABLE t1(a INTEGER PRIMARY KEY, b UNIQUE, c);
sl@0
    27
    INSERT INTO t1 VALUES(1,2,3);
sl@0
    28
    INSERT INTO t1 VALUES(2,3,4);
sl@0
    29
    ANALYZE;
sl@0
    30
  }
sl@0
    31
  db close
sl@0
    32
  sqlite3 db test.db
sl@0
    33
  execsql {
sl@0
    34
    CREATE INDEX i1 ON t1(c);
sl@0
    35
    SELECT count(*) FROM t1 WHERE c IS NOT NULL
sl@0
    36
  }
sl@0
    37
} {2}
sl@0
    38
sl@0
    39
finish_test