]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Add a test case for ticket #464 but leave it commented out for now. We
authordrh <drh@noemail.net>
Sat, 27 Sep 2003 01:08:37 +0000 (01:08 +0000)
committerdrh <drh@noemail.net>
Sat, 27 Sep 2003 01:08:37 +0000 (01:08 +0000)
will fix this problem when VACUUM is rewritten. (CVS 1105)

FossilOrigin-Name: 7ba8dc9b1e5c788f2c0ab32314754324c86aaa49

manifest
manifest.uuid
test/vacuum.test

index 09f3e3efc74dc632590087847f7b04b8bc3dcbab..2e3826829b7dbc3d43a449466134e5d97a5b0035 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sadditional\sbackslash\sescapes\sto\sthe\sCOPY\scommand\sfor\scompatibility\nwith\sPostgreSQL.\s\sTicket\s#460.\s(CVS\s1104)
-D 2003-09-27T00:56:32
+C Add\sa\stest\scase\sfor\sticket\s#464\sbut\sleave\sit\scommented\sout\sfor\snow.\s\sWe\nwill\sfix\sthis\sproblem\swhen\sVACUUM\sis\srewritten.\s(CVS\s1105)
+D 2003-09-27T01:08:38
 F Makefile.in ab585a91e34bc33928a1b6181fa2f6ebd4fb17e1
 F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -132,7 +132,7 @@ F test/trigger3.test a95ccace88291449f5eae7139ec438a42f90654d
 F test/trigger4.test 542afce45774e8f8e1130b96b8675f414d6e4bd8
 F test/unique.test 0e38d4cc7affeef2527720d1dafd1f6870f02f2b
 F test/update.test 2ef5a6655f2966f0aef733a9f4495b3fe8e16809
-F test/vacuum.test 92a4f2f3d50841f1b904ec7cf8372fc0657a5367
+F test/vacuum.test a58776ef529e9bc21980ac120d6859d4ee34b578
 F test/version.test 605fd0d7e7d571370c32b12dbf395b58953de246
 F test/view.test 1ee12c6f8f4791a2c0655120d5562a49400cfe53
 F test/where.test cb3a2ed062ce4b5f08aff2d08027c6a46d68c47b
@@ -173,7 +173,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3
 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604
 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
 F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
-P 5aea81488b2d3bcdc009ccf0f0ffcda046e38d79
-R 26781a0b0fc1fd1d9abd211114ab21da
+P 70a50bdda318f353c8be1ba200f9aedc34642c93
+R 50a4bcfb552b00bc9b0eb7d25299b64b
 U drh
-Z 5212ee3a64fc51376d349d4fdd45cba4
+Z 6825cd4a85a62f9514c9cd13ae2aebc8
index febb31333475ccc736b86144a4705b7325f3740f..64f6bee1654c20bf17c802d22f43e1cae1da2110 100644 (file)
@@ -1 +1 @@
-70a50bdda318f353c8be1ba200f9aedc34642c93
\ No newline at end of file
+7ba8dc9b1e5c788f2c0ab32314754324c86aaa49
\ No newline at end of file
index 466bf89fae500d91a78fb4ffc083dd6bba51e2dd..5222fb6f0fc2f68a3cfbbfb928f761d4d4c90c09 100644 (file)
@@ -11,7 +11,7 @@
 # This file implements regression tests for SQLite library.  The
 # focus of this file is testing the VACUUM statement.
 #
-# $Id: vacuum.test,v 1.12 2003/08/26 11:18:19 drh Exp $
+# $Id: vacuum.test,v 1.13 2003/09/27 01:08:38 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -134,6 +134,20 @@ do_test vacuum-3.1 {
   }
 } {}
 
+# Ticket #464.  Make sure VACUUM works with the sqlite_compile() API.
+#
+if 0 {
+do_test vacuum-4.1 {
+  db close
+  set DB [sqlite db test.db]
+  set VM [sqlite_compile $DB {VACUUM} TAIL]
+  sqlite_step $VM N VALUES COLNAMES
+} {SQLITE_DONE}
+do_test vacuum-4.2 {
+  sqlite_finalize $VM
+} {}
+}
+
 catch {db2 close}
 
 # finish_test