sl@0
|
1 |
# 2007 May 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 |
# This file tests a special case in the b-tree code that can be
|
sl@0
|
12 |
# hit by the "IN" operator (or EXISTS, NOT IN, etc.).
|
sl@0
|
13 |
#
|
sl@0
|
14 |
# $Id: in2.test,v 1.3 2008/07/12 14:52:20 drh Exp $
|
sl@0
|
15 |
|
sl@0
|
16 |
set testdir [file dirname $argv0]
|
sl@0
|
17 |
source $testdir/tester.tcl
|
sl@0
|
18 |
|
sl@0
|
19 |
do_test in2-1 {
|
sl@0
|
20 |
execsql {
|
sl@0
|
21 |
CREATE TABLE a(i INTEGER PRIMARY KEY, a);
|
sl@0
|
22 |
}
|
sl@0
|
23 |
} {}
|
sl@0
|
24 |
|
sl@0
|
25 |
set ::N 2000
|
sl@0
|
26 |
|
sl@0
|
27 |
do_test in2-2 {
|
sl@0
|
28 |
db transaction {
|
sl@0
|
29 |
for {set ::ii 0} {$::ii < $::N} {incr ::ii} {
|
sl@0
|
30 |
execsql {INSERT INTO a VALUES($::ii, $::ii)}
|
sl@0
|
31 |
}
|
sl@0
|
32 |
execsql {INSERT INTO a VALUES(4000, '')}
|
sl@0
|
33 |
|
sl@0
|
34 |
for {set ::ii 0} {$::ii < $::N} {incr ::ii} {
|
sl@0
|
35 |
set ::t [format "x%04d" $ii]
|
sl@0
|
36 |
execsql {INSERT INTO a VALUES(NULL, $::t)}
|
sl@0
|
37 |
}
|
sl@0
|
38 |
}
|
sl@0
|
39 |
} {}
|
sl@0
|
40 |
|
sl@0
|
41 |
# Each iteration of this loop builds a slightly different b-tree to
|
sl@0
|
42 |
# evaluate the "IN (...)" operator in the SQL statement. The contents
|
sl@0
|
43 |
# of the b-tree are (in sorted order):
|
sl@0
|
44 |
#
|
sl@0
|
45 |
# $::ii integers.
|
sl@0
|
46 |
# a string of zero length.
|
sl@0
|
47 |
# $::N short strings.
|
sl@0
|
48 |
#
|
sl@0
|
49 |
# Records are inserted in sorted order.
|
sl@0
|
50 |
#
|
sl@0
|
51 |
# The string of zero-length is stored in a b-tree cell with 3 bytes
|
sl@0
|
52 |
# of payload. Moving this cell from a leaf node to a internal node
|
sl@0
|
53 |
# during b-tree balancing was causing an assertion failure.
|
sl@0
|
54 |
#
|
sl@0
|
55 |
# This bug only applied to b-trees generated to evaluate IN (..)
|
sl@0
|
56 |
# clauses, as it is impossible for persistent b-trees (SQL tables +
|
sl@0
|
57 |
# indices) to contain cells smaller than 4 bytes.
|
sl@0
|
58 |
#
|
sl@0
|
59 |
for {set ::ii 3} {$::ii < $::N} {incr ::ii} {
|
sl@0
|
60 |
do_test in2-$::ii {
|
sl@0
|
61 |
execsql {
|
sl@0
|
62 |
SELECT 1 IN (SELECT a FROM a WHERE (i < $::ii) OR (i >= $::N))
|
sl@0
|
63 |
}
|
sl@0
|
64 |
} {1}
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
finish_test
|