1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix a bug in the soundex() code. Ticket #367. Add tests for ticket #261

even thought the problem could not be reproduced. (CVS 1035)

FossilOrigin-Name: e2ca936feee35b3fce99c95c2cf8c0ad05cd9c3b
This commit is contained in:
drh
2003-06-28 16:20:22 +00:00
parent d60ccc6a75
commit 937dd84de8
5 changed files with 20 additions and 14 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this script testing the callback-free C/C++ API.
#
# $Id: capi2.test,v 1.7 2003/05/16 02:30:27 drh Exp $
# $Id: capi2.test,v 1.8 2003/06/28 16:20:24 drh Exp $
#
set testdir [file dirname $argv0]
@ -454,7 +454,13 @@ do_test capi2-7.12 {
lindex $x 0
} {0}
# Ticket #261 - make sure we can finalize before the end of a query.
#
do_test capi2-8.1 {
set VM1 [sqlite_compile $DB {SELECT * FROM t2} TAIL]
sqlite_finalize $VM1
} {}
db2 close