diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-01-05 17:39:29 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-01-05 17:39:29 +0000 |
commit | a9d1ccb9b038c164d6220b429c42418bf1a0c73a (patch) | |
tree | b6edc64a835b2b4c1f671f375b00ed0cc39e112f /test/collate4.test | |
parent | 5b6afba9242dadd7a7585dea150be2788d49f525 (diff) | |
download | sqlite-a9d1ccb9b038c164d6220b429c42418bf1a0c73a.tar.gz sqlite-a9d1ccb9b038c164d6220b429c42418bf1a0c73a.zip |
First pass at optimizing max()/min() as described in #2853. Some refinements to come. (CVS 4687)
FossilOrigin-Name: c449e04f1870b1ff726c95c0bf1c6c6a22ca588a
Diffstat (limited to 'test/collate4.test')
-rw-r--r-- | test/collate4.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/collate4.test b/test/collate4.test index 7dcd32d7c..4db4c311b 100644 --- a/test/collate4.test +++ b/test/collate4.test @@ -12,7 +12,7 @@ # This file implements regression tests for SQLite library. The # focus of this script is page cache subsystem. # -# $Id: collate4.test,v 1.8 2005/04/01 10:47:40 drh Exp $ +# $Id: collate4.test,v 1.9 2008/01/05 17:39:30 danielk1977 Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -591,12 +591,12 @@ do_test collate4-4.3 { count { SELECT min(a) FROM collate4t1; } -} {10 2} +} {10 1} do_test collate4-4.4 { count { SELECT max(a) FROM collate4t1; } -} {20 1} +} {20 0} do_test collate4-4.5 { # Test that the index with collation type NUMERIC is not used. execsql { |