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

Bug in WHERE clause processing fixed. Ticket #298. (CVS 919)

FossilOrigin-Name: 9b619c98b586a207a87942640d3a94220ff8ab02
This commit is contained in:
drh
2003-04-19 16:34:04 +00:00
parent 9d10f1d0f6
commit 37ea94b8c9
4 changed files with 16 additions and 12 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the use of indices in WHERE clases.
#
# $Id: where.test,v 1.14 2003/04/17 12:44:25 drh Exp $
# $Id: where.test,v 1.15 2003/04/19 16:34:06 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -706,6 +706,10 @@ do_test where-9.3 {
}
} {}
do_test where-10.1 {
execsql {
SELECT 1 WHERE abs(random())<0
}
} {}
finish_test