diff options
Diffstat (limited to 'third_party/sqlite/src/test/index.test')
-rw-r--r-- | third_party/sqlite/src/test/index.test | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/third_party/sqlite/src/test/index.test b/third_party/sqlite/src/test/index.test index 0a41a6d..a278ac8 100644 --- a/third_party/sqlite/src/test/index.test +++ b/third_party/sqlite/src/test/index.test @@ -532,19 +532,10 @@ do_test index-15.2 { INSERT INTO t1 VALUES('+',9); INSERT INTO t1 VALUES('+12347.E+02',10); INSERT INTO t1 VALUES('+12347E+02',11); - INSERT INTO t1 VALUES('+.125E+04',12); - INSERT INTO t1 VALUES('-.125E+04',13); - INSERT INTO t1 VALUES('.125E+0',14); - INSERT INTO t1 VALUES('.125',15); - SELECT b FROM t1 ORDER BY a, b; + SELECT b FROM t1 ORDER BY a; } -} {13 14 15 12 8 5 2 1 3 6 10 11 9 4 7} -do_test index-15.3 { - execsql { - SELECT b FROM t1 WHERE typeof(a) IN ('integer','real') ORDER BY b; - } -} {1 2 3 5 6 8 10 11 12 13 14 15} -integrity_check index-15.4 +} {8 5 2 1 3 6 11 9 10 4 7} +integrity_check index-15.1 # The following tests - index-16.* - test that when a table definition # includes qualifications that specify the same constraint twice only a |