]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Unsuccessful attempt to reproduce ticket #807. (CVS 1809)
authordrh <drh@noemail.net>
Sun, 18 Jul 2004 23:47:53 +0000 (23:47 +0000)
committerdrh <drh@noemail.net>
Sun, 18 Jul 2004 23:47:53 +0000 (23:47 +0000)
FossilOrigin-Name: d7e9772c74a2b9377f17149cc1baa3b2d0dfbfb8

manifest
manifest.uuid
test/misc4.test [new file with mode: 0644]

index c55c8fd22dacd2c467d56deeb0b20272e3511cb7..5ab4b3e5c15ad98bf0de8c89d1e30c51040915df 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Use\sonly\sunsigned\scharacters\sfor\supper()\sand\slower().\s\sTicket\s#708.\s(CVS\s1808)
-D 2004-07-18T23:06:54
+C Unsuccessful\sattempt\sto\sreproduce\sticket\s#807.\s(CVS\s1809)
+D 2004-07-18T23:47:53
 F Makefile.in 77d1219b6563476711a7a962e865979a6f314eb0
 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -137,6 +137,7 @@ F test/minmax.test 6513f9a1bb85fd35ff72b34b7b6634fad6b1e69c
 F test/misc1.test a8eb48d38f7a64e75314a2946db68d2b77901b7d
 F test/misc2.test 703734f5817215ca54e364833b3bf5ff36fcc21e
 F test/misc3.test eb488314990bfc0959221a1acc465013238bf168
+F test/misc4.test e0bf8fc91dc156a663e1b567a4f196f91242e51c
 F test/misuse.test 2a64ce711419f2fd12806ed95af930fd4e7bb8f3
 F test/notnull.test 7a08117a71e74b0321aaa937dbeb41a09d6eb1d0
 F test/null.test c14d0f4739f21e929b8115b72bf0c765b6bb1721
@@ -233,7 +234,7 @@ F www/tclsqlite.tcl 19191cf2a1010eaeff74c51d83fd5f5a4d899075
 F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
 F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 50b016b00470e6303ede1173d0447d8239563263
-R 8afd2e7fc7d01a8d834ef2b3f5c94294
+P 2464f79e5ddf65e90ed84ccd793995fc2f713400
+R 73b62d1ab33f4d5ef31ddf536f476cb2
 U drh
-Z 30ec63d91065118f2d6af7616f6fc4ff
+Z b31cc6f605ce47cd34d1f836b84341e1
index 94486c36ab8ebd7131ecd32b231da9fe4713762c..abee4c38db805e72028243749ef222a7d5a32826 100644 (file)
@@ -1 +1 @@
-2464f79e5ddf65e90ed84ccd793995fc2f713400
\ No newline at end of file
+d7e9772c74a2b9377f17149cc1baa3b2d0dfbfb8
\ No newline at end of file
diff --git a/test/misc4.test b/test/misc4.test
new file mode 100644 (file)
index 0000000..b7ce79f
--- /dev/null
@@ -0,0 +1,45 @@
+# 2004 Jun 27
+#
+# The author disclaims copyright to this source code.  In place of
+# a legal notice, here is a blessing:
+#
+#    May you do good and not evil.
+#    May you find forgiveness for yourself and forgive others.
+#    May you share freely, never taking more than you give.
+#
+#***********************************************************************
+# This file implements regression tests for SQLite library.
+#
+# This file implements tests for miscellanous features that were
+# left out of other test files.
+#
+# $Id: misc4.test,v 1.1 2004/07/18 23:47:53 drh Exp $
+
+set testdir [file dirname $argv0]
+source $testdir/tester.tcl
+
+# Prepare a statement that will create a temporary table.  Then do
+# a rollback.  Then try to execute the prepared statement.
+#
+do_test misc4-1.1 {
+  db close
+  set DB [sqlite3 db test.db]
+  execsql {
+    CREATE TABLE t1(x);
+    INSERT INTO t1 VALUES(1);
+  }
+  set sql {CREATE TEMP TABLE t2 AS SELECT * FROM t1}
+  set stmt [sqlite3_prepare $DB $sql -1 TAIL]
+  execsql {
+    BEGIN;
+    CREATE TABLE t3(a,b,c);
+    INSERT INTO t1 SELECT * FROM t1;
+    ROLLBACK;
+  }
+  sqlite3_step $stmt
+  execsql {
+    SELECT * FROM temp.t2;
+  }
+} {1}
+
+finish_test