1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

In where.c, split out the code that selects an index into a separate

subroutine. (CVS 2554)

FossilOrigin-Name: c30cbba9ead1b4d07f225b1e8a65d5d5230ea45d
This commit is contained in:
drh
2005-07-21 03:14:59 +00:00
parent 013972052e
commit fe05af87f8
9 changed files with 496 additions and 442 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the SELECT statement.
#
# $Id: select2.test,v 1.24 2005/01/25 04:27:55 danielk1977 Exp $
# $Id: select2.test,v 1.25 2005/07/21 03:15:01 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -117,6 +117,7 @@ do_test select2-3.2c {
} {500}
do_test select2-3.2d {
set sqlite_search_count 0
btree_breakpoint
execsql {SELECT * FROM tbl2 WHERE 1000=f2}
set sqlite_search_count
} {3}