blob: 60330a92ddfab800ec66360d82a8da63ee534ad9 [file] [log] [blame]
danielk19775f0ff5d2008-12-30 12:00:12 +00001# 2008 December 23
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
6# May you do good and not evil.
7# May you find forgiveness for yourself and forgive others.
8# May you share freely, never taking more than you give.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library. The focus
danbe7721d2016-02-04 17:31:03 +000012# is testing of where.c. More specifically, the focus is on handling OOM
13# errors within the code that optimizes WHERE clauses that feature the
14# OR operator.
danielk19775f0ff5d2008-12-30 12:00:12 +000015#
danielk19775f0ff5d2008-12-30 12:00:12 +000016
17set testdir [file dirname $argv0]
18source $testdir/tester.tcl
19
20source $testdir/malloc_common.tcl
21
danbe7721d2016-02-04 17:31:03 +000022set testprefix wherefault
23
24do_malloc_test 1 -sqlprep {
danielk19775f0ff5d2008-12-30 12:00:12 +000025 CREATE TABLE t1(a, b, c);
26 CREATE INDEX i1 ON t1(a);
27 CREATE INDEX i2 ON t1(b);
28} -sqlbody {
29 SELECT c FROM t1
30 WHERE
31 a = 2 OR b = 'three' OR a = 4 OR b = 'five' OR a = 6 OR
32 b = 'seven' OR a = 8 OR b = 'nine' OR a = 10
33 ORDER BY rowid;
34
35 SELECT c FROM t1 WHERE
36 a = 1 OR a = 2 OR a = 3 OR a = 4 OR a = 5 OR a = 6;
37
38 SELECT c FROM t1 WHERE
39 a BETWEEN 1 AND 3 AND b < 5 AND b > 2 AND c = 4;
40}
41
danbe7721d2016-02-04 17:31:03 +000042do_malloc_test 2 -tclprep {
danielk19771d461462009-04-21 09:02:45 +000043 db eval {
44 BEGIN;
45 CREATE TABLE t1(a, b, c);
46 CREATE INDEX i1 ON t1(a);
47 CREATE INDEX i2 ON t1(b);
48 }
49 for {set i 0} {$i < 1000} {incr i} {
50 set ii [expr $i*$i]
51 set iii [expr $i*$i]
52 db eval { INSERT INTO t1 VALUES($i, $ii, $iii) }
53 }
54 db eval COMMIT
55} -sqlbody {
56 SELECT count(*) FROM t1 WHERE a BETWEEN 5 AND 995 OR b BETWEEN 5 AND 900000;
57}
58
danielk19775f0ff5d2008-12-30 12:00:12 +000059finish_test