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

Various minor fixes and updates to make more test cases pass. (CVS 1370)

FossilOrigin-Name: dbe8385ecf1df8bf0b1baf5e811ec5a1de5c4c42
This commit is contained in:
danielk1977
2004-05-13 11:34:16 +00:00
parent 183f9f7360
commit 96fc5fe6a5
14 changed files with 107 additions and 90 deletions

View File

@ -12,7 +12,7 @@
# focus of this file is testing the magic ROWID column that is
# found on all tables.
#
# $Id: rowid.test,v 1.13 2004/01/14 21:59:24 drh Exp $
# $Id: rowid.test,v 1.14 2004/05/13 11:34:17 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -186,11 +186,14 @@ do_test rowid-3.4 {
foreach {u v w x y z} $r2 {}
expr {$u==$e && $w==$c && $y==$a}
} {1}
# sqlite v3 - do_probtest doesn't exist anymore?
if 0 {
do_probtest rowid-3.5 {
set r1 [execsql {SELECT _rowid_, rowid FROM t2 ORDER BY rowid}]
foreach {a b c d e f} $r1 {}
expr {$a!=$b && $c!=$d && $e!=$f}
} {1}
}
# Let's try some more complex examples, including some joins.
#