-C Update\sthe\sversion\snumber\sto\s3.6.4.\s(CVS\s5784)
-D 2008-10-09T15:56:06
+C Add\sa\stest\sto\sverify\sthe\ssqlite3_column_name()\sinterface\sreturns\sthe\ncorrect\svalue\swhen\sthe\squery\sis\sof\sthe\sform:\s"SELECT\srowid,*\sFROM...".\nTicket\s#3429.\s(CVS\s5785)
+D 2008-10-09T15:56:46
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in 7fc26e087207e7a4a7723583dbd7997477af3b13
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F test/collate9.test 3adcc799229545940df2f25308dd1ad65869145a
F test/collateA.test b8218ab90d1fa5c59dcf156efabb1b2599c580d6
F test/colmeta.test 087c42997754b8c648819832241daf724f813322
-F test/colname.test 0f05fea3e5c9260ece53117ad400657515c34280
+F test/colname.test 69fea30632d55862a012d3786c7d5fd1329f78db
F test/conflict.test bb29b052c60a1f7eb6382be77902061d1f305318
F test/corrupt.test 5bcf7a986358123b8055dfa64b45fc2fb54dcaa9
F test/corrupt2.test b83f690753525ddac4a9c96e6ba11886ddaf24ea
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P ec01bd72ee875df179c680c1a40304d2f807fe38
-R 8f6702073db25ee1c5fb916487a4ec6b
+P 4b973ac98d027cc1097fa9845eb4a8489b633ea4
+R 45542fbff8d14207e2f09fb766bf04f6
U drh
-Z 28ed5a3ec7c80a027758863ae9132762
+Z 351753422fadf7662b5a45fc736c1469
# The focus of this file is testing how SQLite generates the names
# of columns in a result set.
#
-# $Id: colname.test,v 1.5 2008/09/13 01:20:15 drh Exp $
+# $Id: colname.test,v 1.6 2008/10/09 15:56:46 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
execsql2 {SELECT "`a`", max([`a`]) AS m FROM t6}
} {`a` 5 m 5}
+
+# Ticket #3429
+# We cannot find anything wrong, but it never hurts to add another
+# test case.
+#
+do_test colname-7.1 {
+ db eval {
+ CREATE TABLE t7(x INTEGER PRIMARY KEY, y);
+ INSERT INTO t7 VALUES(1,2);
+ }
+ execsql2 {SELECT rowid, * FROM t7}
+} {x 1 x 1 y 2}
+
finish_test