-C :-)\s(CVS\s70)
-D 2000-06-07T15:11:27
+C :-)\s(CVS\s71)
+D 2000-06-07T15:23:56
F COPYRIGHT 74a8a6531a42e124df07ab5599aad63870fa0bd4
F Makefile.in 17ba1ccf8d2d40c627796bba8f72952365d6d644
F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958
F test/copy.test b77a1214bd7756f2849d5c4fa6e715c0ff0c34eb
F test/dbbe.test 3978ab21ff2a0531a85618c538d27047d560fc5d
F test/delete.test 30451333f89479d2deb5410edd3f3cce67339944
-F test/expr.test 52be5592143a88479e0006dfd7e2023e43294636
+F test/expr.test 7d017f1aa64c981b161408a015424cd90592bc16
F test/in.test 17cd46a9ca0e5d4a804483e6fb496458494858e6
F test/index.test 9f99dca2d904b8de330863a978587f136e2df65a
F test/insert.test 66f4c3bd600fec8eb1e733b928cbe6fa885eff0c
F www/changes.tcl 04e66b4257589ff78a7e1de93e9dda4725fb03d6
F www/index.tcl 52e29a4eeda8d59e91af43c61fef177c5f2ffd53
F www/sqlite.tcl 2f933ce18cffd34a0a020a82435ab937137970fd
-P e4f6b17f66ddbb0bcf13bb9fffc98e5c102151ef
-R ce3737a50e7c1b7f05029b62a126b877
+P d3baa046c946a2c4d5567ee57d96a6c8aa5740b9
+R 215e022fbd18259a29283681a23774a1
U drh
-Z 7bf9f75d63299255b8d69e32b524ad36
+Z 65ae90cd6fbba0e7283aef1a28eb0bb1
# This file implements regression tests for SQLite library. The
# focus of this file is testing expressions.
#
-# $Id: expr.test,v 1.5 2000/06/06 13:54:16 drh Exp $
+# $Id: expr.test,v 1.6 2000/06/07 15:23:56 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
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.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
test_expr expr-5.8 {t1='abxyzzycx', t2='A%C'} {t1 LIKE t2} 0
-test_expr expr-5.9 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1
-test_expr expr-5.10 {t1='abc', t2='ABC'} {t1 NOT LIKE t2} 0
+test_expr expr-5.9 {t1='abc', t2='A%_C'} {t1 LIKE t2} 1
+test_expr expr-5.9b {t1='ac', t2='A%_C'} {t1 LIKE t2} 0
+test_expr expr-5.10 {t1='abxyzzyc', t2='A%_C'} {t1 LIKE t2} 1
+test_expr expr-5.11 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1
+test_expr expr-5.12 {t1='abc', t2='ABC'} {t1 NOT LIKE t2} 0
test_expr expr-6.1 {t1='abc', t2='xyz'} {t1 GLOB t2} 0
test_expr expr-6.2 {t1='abc', t2='ABC'} {t1 GLOB t2} 0