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

Eliminate the OP_SortMakeRec and OP_SortCallback opcodes. Sort using the

standard record format. (CVS 1426)

FossilOrigin-Name: 25643a0137d395572f16cfec3ab3327d913138ba
This commit is contained in:
drh
2004-05-21 03:01:58 +00:00
parent 736c22b803
commit ce665cf60e
5 changed files with 20 additions and 83 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.20 2004/05/21 02:14:25 drh Exp $
# $Id: where.test,v 1.21 2004/05/21 03:01:59 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -364,7 +364,7 @@ do_test where-5.14 {
proc cksort {sql} {
set data [execsql $sql]
set prog [execsql "EXPLAIN $sql"]
if {[regexp SortCallback $prog]} {set x sort} {set x nosort}
if {[regexp Sort $prog]} {set x sort} {set x nosort}
lappend data $x
return $data
}