Back out check-in (3058) - it breaks too much application code. (CVS 3063)

FossilOrigin-Name: 731f1e3245fafbda24355d5bdc5b249c4229305f
This commit is contained in:
drh
2006-02-09 16:52:23 +00:00
parent deb802cd83
commit 9f6696ac9f
5 changed files with 17 additions and 22 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
#
# This file implements tests for the PRAGMA command.
#
# $Id: pragma.test,v 1.38 2006/02/06 21:34:27 drh Exp $
# $Id: pragma.test,v 1.39 2006/02/09 16:52:24 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -345,7 +345,7 @@ do_test pragma-6.2 {
execsql {
pragma table_info(t2)
}
} {0 a numeric 0 {} 0 0 binary 1 b numeric 0 {} 0 0 binary 2 c numeric 0 {} 0 0 binary}
} {0 a numeric 0 {} 0 1 b numeric 0 {} 0 2 c numeric 0 {} 0}
ifcapable {foreignkey} {
do_test pragma-6.3 {
execsql {
+2 -2
View File
@@ -15,7 +15,7 @@
# interface is pretty well tested. This file contains some addition
# tests for fringe issues that the main test suite does not cover.
#
# $Id: tclsqlite.test,v 1.52 2006/02/06 21:34:27 drh Exp $
# $Id: tclsqlite.test,v 1.53 2006/02/09 16:52:24 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -148,7 +148,7 @@ if {[sqlite3 -tcl-uses-utf]} {
ifcapable schema_pragmas {
do_test tcl-2.2 {
execsql "PRAGMA table_info(t\u0123x)"
} "0 a int 0 {} 0 0 binary 1 b\u1235 float 0 {} 0 0 binary"
} "0 a int 0 {} 0 1 b\u1235 float 0 {} 0"
}
do_test tcl-2.3 {
execsql "INSERT INTO t\u0123x VALUES(1,2.3)"