]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Set and clear the full_column_name flag using direct invocation rather than
authordrh <drh@noemail.net>
Tue, 14 Mar 2006 13:10:42 +0000 (13:10 +0000)
committerdrh <drh@noemail.net>
Tue, 14 Mar 2006 13:10:42 +0000 (13:10 +0000)
the execsql tcl command so that the select1 test works with the serialized
statement extension. (CVS 3136)

FossilOrigin-Name: 4d70013a6a42a58bc7af3a87bf79c131a0070e96

manifest
manifest.uuid
test/select1.test

index 352317d8cd12b8804ea3b3dfe9d8f019c2df4a94..a1029a8f2b04dbaa9acd872511170e930384c7c9 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Move\sthe\sPENDING_PAGE\sto\sa\svery\slarge\svalue\sif\sdisk\sI/O\sis\somitted.\s(CVS\s3135)
-D 2006-03-14T12:59:10
+C Set\sand\sclear\sthe\sfull_column_name\sflag\susing\sdirect\sinvocation\srather\sthan\nthe\sexecsql\stcl\scommand\sso\sthat\sthe\sselect1\stest\sworks\swith\sthe\sserialized\nstatement\sextension.\s(CVS\s3136)
+D 2006-03-14T13:10:43
 F Makefile.in 5d8dff443383918b700e495de42ec65bc1c8865b
 F Makefile.linux-gcc 74ba0eadf88748a9ce3fd03d2a3ede2e6715baec
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -222,7 +222,7 @@ F test/rollback.test 673cd8c44c685ad54987fe7f0eeba84efa09685d
 F test/rowid.test 040a3bef06f970c45f5fcd14b2355f7f4d62f0cf
 F test/safety.test 4a06934e45d03b8b50ebcd8d174eb0367d2fd851
 F test/schema.test 8a2ae440fb15f5798a68059e8746402f3137be46
-F test/select1.test 9991b12eb68fa86e0faa29f26f51986d80ce0c42
+F test/select1.test db53c257559a0ed817a5be23947dccc48828edb7
 F test/select2.test f3c2678c3a9f3cf08ec4988a3845bda64be6d9e3
 F test/select3.test 8fece41cd8f2955131b3f973a7123bec60b6e65e
 F test/select4.test c239f516aa31f42f2ef7c6d7cd01105f08f934ca
@@ -355,7 +355,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 0e05355f3ca795f0ab959553e6c9462e5483c3b2
-R 8b2158249132ee17ae57b7db010b8498
+P f07181739f82b0d23f934f51b97e67c32efe6f42
+R 2f1c4b3a9a42e21655f80f86a32ab92a
 U drh
-Z f8486d741b67f811d2affb3cc9c5f176
+Z f9b20f77c14e1ce189c3b40b91bc6cce
index c977b91f4511941c8532bfc4ed92c78ba2cdd861..073584c1185b276d626025134581fe90d357392c 100644 (file)
@@ -1 +1 @@
-f07181739f82b0d23f934f51b97e67c32efe6f42
\ No newline at end of file
+4d70013a6a42a58bc7af3a87bf79c131a0070e96
\ No newline at end of file
index b8aa78fc22da107b39739867e16eab573d3e0723..1367faecd385d677821fe5b15487e31595b30cbf 100644 (file)
@@ -11,7 +11,7 @@
 # This file implements regression tests for SQLite library.  The
 # focus of this file is testing the SELECT statement.
 #
-# $Id: select1.test,v 1.48 2006/02/09 22:13:42 drh Exp $
+# $Id: select1.test,v 1.49 2006/03/14 13:10:43 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -375,7 +375,7 @@ do_test select1-6.1 {
   lappend v $msg
 } {0 {f1 11 f1 33}}
 do_test select1-6.1.1 {
-  execsql {PRAGMA full_column_names=on}
+  db eval {PRAGMA full_column_names=on}
   set v [catch {execsql2 {SELECT f1 FROM test1 ORDER BY f2}} msg]
   lappend v $msg
 } {0 {test1.f1 11 test1.f1 33}}
@@ -389,7 +389,7 @@ do_test select1-6.1.3 {
 } {0 {f1 11 f2 22}}
 do_test select1-6.1.4 {
   set v [catch {execsql2 {SELECT DISTINCT * FROM test1 WHERE f1==11}} msg]
-  execsql {PRAGMA full_column_names=off}
+  db eval {PRAGMA full_column_names=off}
   lappend v $msg
 } {0 {f1 11 f2 22}}
 do_test select1-6.1.5 {