aboutsummaryrefslogtreecommitdiff
path: root/test/expr.test
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2004-06-17 05:36:44 +0000
committerdanielk1977 <danielk1977@noemail.net>2004-06-17 05:36:44 +0000
commit3f6b08747175508d3078a8cc56e3ee745ba6a044 (patch)
treed41a1d374a359b6755dfd3ff8e3a386438d2ee41 /test/expr.test
parentd09b592f635572b81150f2ae2639701d7fb7f4f9 (diff)
downloadsqlite-3f6b08747175508d3078a8cc56e3ee745ba6a044.tar.gz
sqlite-3f6b08747175508d3078a8cc56e3ee745ba6a044.zip
Use the faster LIKE function from sqlite v2. Add special user functions to
test builds to test the auxdata APIs. (CVS 1610) FossilOrigin-Name: b9493c5facea4d24a6cbc4f6fa2f75dc2399a11d
Diffstat (limited to 'test/expr.test')
-rw-r--r--test/expr.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/expr.test b/test/expr.test
index 6fd003b0e..bfc03aeb6 100644
--- a/test/expr.test
+++ b/test/expr.test
@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing expressions.
#
-# $Id: expr.test,v 1.33 2004/06/02 00:41:10 drh Exp $
+# $Id: expr.test,v 1.34 2004/06/17 05:36:45 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -232,6 +232,7 @@ test_expr expr-5.2 {t1='abc', t2='ABC'} {t1 LIKE t2} 1
test_expr expr-5.3 {t1='abc', t2='A_C'} {t1 LIKE t2} 1
test_expr expr-5.4 {t1='abc', t2='abc_'} {t1 LIKE t2} 0
test_expr expr-5.5 {t1='abc', t2='A%C'} {t1 LIKE t2} 1
+test_expr expr-5.5a {t1='abdc', t2='a%c'} {t1 LIKE t2} 1
test_expr expr-5.5b {t1='ac', t2='A%C'} {t1 LIKE t2} 1
test_expr expr-5.6 {t1='abxyzzyc', t2='A%C'} {t1 LIKE t2} 1
test_expr expr-5.7 {t1='abxyzzy', t2='A%C'} {t1 LIKE t2} 0