os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/in3.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 November 29
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 the optimisations made in November 2007 of expressions 
sl@0
    12
# of the following form:
sl@0
    13
#
sl@0
    14
#     <value> IN (SELECT <column> FROM <table>)
sl@0
    15
#
sl@0
    16
# $Id: in3.test,v 1.5 2008/08/04 03:51:24 danielk1977 Exp $
sl@0
    17
sl@0
    18
set testdir [file dirname $argv0]
sl@0
    19
source $testdir/tester.tcl
sl@0
    20
sl@0
    21
ifcapable !subquery {
sl@0
    22
  finish_test
sl@0
    23
  return
sl@0
    24
}
sl@0
    25
sl@0
    26
# Return the number of OpenEphemeral instructions used in the
sl@0
    27
# implementation of the sql statement passed as a an argument.
sl@0
    28
#
sl@0
    29
proc nEphemeral {sql} {
sl@0
    30
  set nEph 0
sl@0
    31
  foreach op [execsql "EXPLAIN $sql"] {
sl@0
    32
    if {$op eq "OpenEphemeral"} {incr nEph}
sl@0
    33
  }
sl@0
    34
  set nEph
sl@0
    35
}
sl@0
    36
sl@0
    37
# This proc works the same way as execsql, except that the number
sl@0
    38
# of OpenEphemeral instructions used in the implementation of the
sl@0
    39
# statement is inserted into the start of the returned list.
sl@0
    40
#
sl@0
    41
proc exec_neph {sql} {
sl@0
    42
  return [concat [nEphemeral $sql] [execsql $sql]]
sl@0
    43
}
sl@0
    44
sl@0
    45
do_test in3-1.1 {
sl@0
    46
  execsql {
sl@0
    47
    CREATE TABLE t1(a PRIMARY KEY, b);
sl@0
    48
    INSERT INTO t1 VALUES(1, 2);
sl@0
    49
    INSERT INTO t1 VALUES(3, 4);
sl@0
    50
    INSERT INTO t1 VALUES(5, 6);
sl@0
    51
  }
sl@0
    52
} {}
sl@0
    53
sl@0
    54
# All of these queries should avoid using a temp-table:
sl@0
    55
#
sl@0
    56
do_test in3-1.2 {
sl@0
    57
  exec_neph { SELECT rowid FROM t1 WHERE rowid IN (SELECT rowid FROM t1); }
sl@0
    58
} {0 1 2 3}
sl@0
    59
do_test in3-1.3 {
sl@0
    60
  exec_neph { SELECT a FROM t1 WHERE a IN (SELECT a FROM t1); }
sl@0
    61
} {0 1 3 5}
sl@0
    62
do_test in3-1.4 {
sl@0
    63
  exec_neph { SELECT rowid FROM t1 WHERE rowid+0 IN (SELECT rowid FROM t1); }
sl@0
    64
} {0 1 2 3}
sl@0
    65
do_test in3-1.5 {
sl@0
    66
  exec_neph { SELECT a FROM t1 WHERE a+0 IN (SELECT a FROM t1); }
sl@0
    67
} {0 1 3 5}
sl@0
    68
sl@0
    69
# Because none of the sub-select queries in the following statements
sl@0
    70
# match the pattern ("SELECT <column> FROM <table>"), the following do 
sl@0
    71
# require a temp table.
sl@0
    72
#
sl@0
    73
do_test in3-1.6 {
sl@0
    74
  exec_neph { SELECT rowid FROM t1 WHERE rowid IN (SELECT rowid+0 FROM t1); }
sl@0
    75
} {1 1 2 3}
sl@0
    76
do_test in3-1.7 {
sl@0
    77
  exec_neph { SELECT a FROM t1 WHERE a IN (SELECT a+0 FROM t1); }
sl@0
    78
} {1 1 3 5}
sl@0
    79
do_test in3-1.8 {
sl@0
    80
  exec_neph { SELECT a FROM t1 WHERE a IN (SELECT a FROM t1 WHERE 1); }
sl@0
    81
} {1 1 3 5}
sl@0
    82
do_test in3-1.9 {
sl@0
    83
  exec_neph { SELECT a FROM t1 WHERE a IN (SELECT a FROM t1 GROUP BY a); }
sl@0
    84
} {1 1 3 5}
sl@0
    85
sl@0
    86
# This should not use a temp-table. Even though the sub-select does
sl@0
    87
# not exactly match the pattern "SELECT <column> FROM <table>", in
sl@0
    88
# this case the ORDER BY is a no-op and can be ignored.
sl@0
    89
do_test in3-1.10 {
sl@0
    90
  exec_neph { SELECT a FROM t1 WHERE a IN (SELECT a FROM t1 ORDER BY a); }
sl@0
    91
} {0 1 3 5}
sl@0
    92
sl@0
    93
# These do use the temp-table. Adding the LIMIT clause means the 
sl@0
    94
# ORDER BY cannot be ignored.
sl@0
    95
do_test in3-1.11 {
sl@0
    96
  exec_neph {SELECT a FROM t1 WHERE a IN (SELECT a FROM t1 ORDER BY a LIMIT 1)}
sl@0
    97
} {1 1}
sl@0
    98
do_test in3-1.12 {
sl@0
    99
  exec_neph {
sl@0
   100
    SELECT a FROM t1 WHERE a IN (SELECT a FROM t1 ORDER BY a LIMIT 1 OFFSET 1)
sl@0
   101
  }
sl@0
   102
} {1 3}
sl@0
   103
sl@0
   104
# Has to use a temp-table because of the compound sub-select.
sl@0
   105
#
sl@0
   106
ifcapable compound {
sl@0
   107
  do_test in3-1.13 {
sl@0
   108
    exec_neph {
sl@0
   109
      SELECT a FROM t1 WHERE a IN (
sl@0
   110
        SELECT a FROM t1 UNION ALL SELECT a FROM t1
sl@0
   111
      )
sl@0
   112
    }
sl@0
   113
  } {1 1 3 5}
sl@0
   114
}
sl@0
   115
sl@0
   116
# The first of these queries has to use the temp-table, because the 
sl@0
   117
# collation sequence used for the index on "t1.a" does not match the
sl@0
   118
# collation sequence used by the "IN" comparison. The second does not
sl@0
   119
# require a temp-table, because the collation sequences match.
sl@0
   120
#
sl@0
   121
do_test in3-1.14 {
sl@0
   122
  exec_neph { SELECT a FROM t1 WHERE a COLLATE nocase IN (SELECT a FROM t1) }
sl@0
   123
} {1 1 3 5}
sl@0
   124
do_test in3-1.15 {
sl@0
   125
  exec_neph { SELECT a FROM t1 WHERE a COLLATE binary IN (SELECT a FROM t1) }
sl@0
   126
} {0 1 3 5}
sl@0
   127
sl@0
   128
# Neither of these queries require a temp-table. The collation sequence
sl@0
   129
# makes no difference when using a rowid.
sl@0
   130
#
sl@0
   131
do_test in3-1.16 {
sl@0
   132
  exec_neph {SELECT a FROM t1 WHERE a COLLATE nocase IN (SELECT rowid FROM t1)}
sl@0
   133
} {0 1 3}
sl@0
   134
do_test in3-1.17 {
sl@0
   135
  exec_neph {SELECT a FROM t1 WHERE a COLLATE binary IN (SELECT rowid FROM t1)}
sl@0
   136
} {0 1 3}
sl@0
   137
sl@0
   138
# The following tests - in3.2.* - test a bug that was difficult to track
sl@0
   139
# down during development. They are not particularly well focused.
sl@0
   140
#
sl@0
   141
do_test in3-2.1 {
sl@0
   142
  execsql {
sl@0
   143
    DROP TABLE IF EXISTS t1;
sl@0
   144
    CREATE TABLE t1(w int, x int, y int);
sl@0
   145
    CREATE TABLE t2(p int, q int, r int, s int);
sl@0
   146
  }
sl@0
   147
  for {set i 1} {$i<=100} {incr i} {
sl@0
   148
    set w $i
sl@0
   149
    set x [expr {int(log($i)/log(2))}]
sl@0
   150
    set y [expr {$i*$i + 2*$i + 1}]
sl@0
   151
    execsql "INSERT INTO t1 VALUES($w,$x,$y)"
sl@0
   152
  }
sl@0
   153
  set maxy [execsql {select max(y) from t1}]
sl@0
   154
  db eval { INSERT INTO t2 SELECT 101-w, x, $maxy+1-y, y FROM t1 }
sl@0
   155
} {}
sl@0
   156
do_test in3-2.2 {
sl@0
   157
  execsql {
sl@0
   158
    SELECT rowid 
sl@0
   159
    FROM t1 
sl@0
   160
    WHERE rowid IN (SELECT rowid FROM t1 WHERE rowid IN (1, 2));
sl@0
   161
  }
sl@0
   162
} {1 2}
sl@0
   163
do_test in3-2.3 {
sl@0
   164
  execsql {
sl@0
   165
    select rowid from t1 where rowid IN (-1,2,4)
sl@0
   166
  }
sl@0
   167
} {2 4}
sl@0
   168
do_test in3-2.4 {
sl@0
   169
  execsql {
sl@0
   170
    SELECT rowid FROM t1 WHERE rowid IN 
sl@0
   171
       (select rowid from t1 where rowid IN (-1,2,4))
sl@0
   172
  }
sl@0
   173
} {2 4}
sl@0
   174
sl@0
   175
#-------------------------------------------------------------------------
sl@0
   176
# This next block of tests - in3-3.* - verify that column affinity is
sl@0
   177
# correctly handled in cases where an index might be used to optimise
sl@0
   178
# an IN (SELECT) expression.
sl@0
   179
#
sl@0
   180
do_test in3-3.1 {
sl@0
   181
  catch {execsql {
sl@0
   182
    DROP TABLE t1;
sl@0
   183
    DROP TABLE t2;
sl@0
   184
  }}
sl@0
   185
sl@0
   186
  execsql {
sl@0
   187
sl@0
   188
    CREATE TABLE t1(a BLOB, b NUMBER ,c TEXT);
sl@0
   189
    CREATE UNIQUE INDEX t1_i1 ON t1(a);        /* no affinity */
sl@0
   190
    CREATE UNIQUE INDEX t1_i2 ON t1(b);        /* numeric affinity */
sl@0
   191
    CREATE UNIQUE INDEX t1_i3 ON t1(c);        /* text affinity */
sl@0
   192
sl@0
   193
    CREATE TABLE t2(x BLOB, y NUMBER, z TEXT);
sl@0
   194
    CREATE UNIQUE INDEX t2_i1 ON t2(x);        /* no affinity */
sl@0
   195
    CREATE UNIQUE INDEX t2_i2 ON t2(y);        /* numeric affinity */
sl@0
   196
    CREATE UNIQUE INDEX t2_i3 ON t2(z);        /* text affinity */
sl@0
   197
sl@0
   198
    INSERT INTO t1 VALUES(1, 1, 1);
sl@0
   199
    INSERT INTO t2 VALUES('1', '1', '1');
sl@0
   200
  }
sl@0
   201
} {}
sl@0
   202
sl@0
   203
do_test in3-3.2 {
sl@0
   204
  # No affinity is applied before comparing "x" and "a". Therefore
sl@0
   205
  # the index can be used (the comparison is false, text!=number).
sl@0
   206
  exec_neph { SELECT x IN (SELECT a FROM t1) FROM t2 }
sl@0
   207
} {0 0}
sl@0
   208
do_test in3-3.3 {
sl@0
   209
  # Logically, numeric affinity is applied to both sides before 
sl@0
   210
  # the comparison.  Therefore it is possible to use index t1_i2.
sl@0
   211
  exec_neph { SELECT x IN (SELECT b FROM t1) FROM t2 }
sl@0
   212
} {0 1}
sl@0
   213
do_test in3-3.4 {
sl@0
   214
  # No affinity is applied before the comparison takes place. Making
sl@0
   215
  # it possible to use index t1_i3.
sl@0
   216
  exec_neph { SELECT x IN (SELECT c FROM t1) FROM t2 }
sl@0
   217
} {0 1}
sl@0
   218
sl@0
   219
do_test in3-3.5 {
sl@0
   220
  # Numeric affinity should be applied to each side before the comparison
sl@0
   221
  # takes place. Therefore we cannot use index t1_i1, which has no affinity.
sl@0
   222
  exec_neph { SELECT y IN (SELECT a FROM t1) FROM t2 }
sl@0
   223
} {1 1}
sl@0
   224
do_test in3-3.6 {
sl@0
   225
  # Numeric affinity is applied to both sides before 
sl@0
   226
  # the comparison.  Therefore it is possible to use index t1_i2.
sl@0
   227
  exec_neph { SELECT y IN (SELECT b FROM t1) FROM t2 }
sl@0
   228
} {0 1}
sl@0
   229
do_test in3-3.7 {
sl@0
   230
  # Numeric affinity is applied before the comparison takes place. 
sl@0
   231
  # Making it impossible to use index t1_i3.
sl@0
   232
  exec_neph { SELECT y IN (SELECT c FROM t1) FROM t2 }
sl@0
   233
} {1 1}
sl@0
   234
sl@0
   235
#---------------------------------------------------------------------
sl@0
   236
#
sl@0
   237
# Test using a multi-column index.
sl@0
   238
#
sl@0
   239
do_test in3-4.1 {
sl@0
   240
  execsql {
sl@0
   241
    CREATE TABLE t3(a, b, c);
sl@0
   242
    CREATE UNIQUE INDEX t3_i ON t3(b, a);
sl@0
   243
  }
sl@0
   244
sl@0
   245
  execsql {
sl@0
   246
    INSERT INTO t3 VALUES(1, 'numeric', 2);
sl@0
   247
    INSERT INTO t3 VALUES(2, 'text', 2);
sl@0
   248
    INSERT INTO t3 VALUES(3, 'real', 2);
sl@0
   249
    INSERT INTO t3 VALUES(4, 'none', 2);
sl@0
   250
  }
sl@0
   251
} {}
sl@0
   252
do_test in3-4.2 {
sl@0
   253
  exec_neph { SELECT 'text' IN (SELECT b FROM t3) }
sl@0
   254
} {0 1}
sl@0
   255
do_test in3-4.3 {
sl@0
   256
  exec_neph { SELECT 'TEXT' COLLATE nocase IN (SELECT b FROM t3) }
sl@0
   257
} {1 1}
sl@0
   258
do_test in3-4.4 {
sl@0
   259
  # A temp table must be used because t3_i.b is not guaranteed to be unique.
sl@0
   260
  exec_neph { SELECT b FROM t3 WHERE b IN (SELECT b FROM t3) }
sl@0
   261
} {1 none numeric real text}
sl@0
   262
do_test in3-4.5 {
sl@0
   263
  execsql { CREATE UNIQUE INDEX t3_i2 ON t3(b) }
sl@0
   264
  exec_neph { SELECT b FROM t3 WHERE b IN (SELECT b FROM t3) }
sl@0
   265
} {0 none numeric real text}
sl@0
   266
do_test in3-4.6 {
sl@0
   267
  execsql { DROP INDEX t3_i2 }
sl@0
   268
} {}
sl@0
   269
sl@0
   270
# The following two test cases verify that ticket #2991 has been fixed.
sl@0
   271
#
sl@0
   272
do_test in3-5.1 {
sl@0
   273
  execsql {
sl@0
   274
    CREATE TABLE Folders(
sl@0
   275
      folderid INTEGER PRIMARY KEY, 
sl@0
   276
      parentid INTEGER, 
sl@0
   277
      rootid INTEGER, 
sl@0
   278
      path VARCHAR(255)
sl@0
   279
    );
sl@0
   280
  }
sl@0
   281
} {}
sl@0
   282
do_test in3-5.2 {
sl@0
   283
  catchsql {
sl@0
   284
    DELETE FROM Folders WHERE folderid IN
sl@0
   285
    (SELECT folderid FROM Folder WHERE path LIKE 'C:\MP3\Albums\' || '%');
sl@0
   286
  }
sl@0
   287
} {1 {no such table: Folder}}
sl@0
   288
sl@0
   289
finish_test