-C Correct\sduplicate\stracing\sof\sSQL\sstatements.\s(CVS\s1284)
-D 2004-03-04T19:09:20
+C Bump\sthe\sversion\snumber\sto\s2.8.13.\s\sPatch\sup\sthe\slimit\stest\sso\sthat\sit\sworks\nin\sspite\sof\sticket\s#521\s-\swe\sdon't\swant\sany\stests\sfailing\sin\san\sofficial\nrelease\seven\sif\sthere\sare\sbugs.\s:-D\s(CVS\s1285)
+D 2004-03-08T13:26:18
F Makefile.in afc6c0377773421633e592347097ad036eef6aeb
F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
-F VERSION 8323c161a43094e2340bc1e57b99dacf10176301
+F VERSION 4328de2a5fb5000699b907ca405cb9d84ba4e097
F aclocal.m4 7daea4c35e88de30d5a3f6f7a2ab99720e803bbd
F art/SQLite.eps 9b43cc99cfd2be687d386faea6862ea68d6a72b2
F art/SQLite.gif 1bbb94484963f1382e27e1c5e86dd0c1061eba2b
F test/join2.test c97e4c5aa65dea462145529e58212a709b4722b8
F test/lastinsert.test 31382f88b9b0270333ac9e4a17f2c2f4732da718
F test/laststmtchanges.test cabd11bdfbaf73a4486c50b58297d9c2038ccc18
-F test/limit.test fa2a8b3fe377ebe60e0bc9a6a35af9ac4eb3d2b3
+F test/limit.test e28ce938ddacefdff860d082be45e1e5e2801441
F test/lock.test 226ef831dad60ad4d200dc83e25479ba952aac7e
F test/main.test 6a851b5992c4881a725a3d9647e629199df8de9d
F test/malloc.test 2cfcffb7c858640e01e6520ee1cd54ca57d98e80
F test/thread1.test 53f050d5be6932d9430df7756edd379366508ff6
F test/threadtest1.c f7f896e62ed46feae1dc411114a48c15a0f82ee2
F test/threadtest2.c d94ca4114fd1504f7e0ae724bcd83d4b40931d86
-F test/trans.test 75e7a171b5d2d94ee56766459113e2ad0e5f809d
+F test/trans.test 0cb8256daff1ae0da75321e00125338c6681158d
F test/trigger1.test 4538c1c7d6bbca5dfe619ea6e1682b07ece95b21
F test/trigger2.test 0767ab30cb5a2c8402c8524f3d566b410b6f5263
F test/trigger3.test a95ccace88291449f5eae7139ec438a42f90654d
F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da
F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P 3cac4b7b526d6c5dbf394009b534707bcb65b0da
-R 0b806b4fc15359bff501f8bfa4b713b2
-U rdc
-Z 6400d4c7cfcdcdab8fe7e7a7838b1180
+P bb67311b3db49ce772533da14f62497c55432fae
+R f9b5d0a0478d5a18b4f5267909444090
+U drh
+Z 5b6b5581e22f6f412b84286e37143550
# focus of this file is testing the LIMIT ... OFFSET ... clause
# of SELECT statements.
#
-# $Id: limit.test,v 1.10 2003/07/20 01:16:48 drh Exp $
+# $Id: limit.test,v 1.11 2004/03/08 13:26:18 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
do_test limit-4.1 {
execsql {
BEGIN;
- CREATE TABLE t3 AS SELECT x FROM t1 ORDER BY x LIMIT 10 OFFSET 1;
+ CREATE TABLE t3(x);
+ INSERT INTO t3 SELECT x FROM t1 ORDER BY x LIMIT 10 OFFSET 1;
INSERT INTO t3 SELECT x+(SELECT max(x) FROM t3) FROM t3;
INSERT INTO t3 SELECT x+(SELECT max(x) FROM t3) FROM t3;
INSERT INTO t3 SELECT x+(SELECT max(x) FROM t3) FROM t3;
# This file implements regression tests for SQLite library. The
# focus of this script is database locks.
#
-# $Id: trans.test,v 1.18 2003/02/15 23:09:17 drh Exp $
+# $Id: trans.test,v 1.19 2004/03/08 13:26:18 drh Exp $
set testdir [file dirname $argv0]
puts $fd {
sqlite db test.db
db eval {
+ PRAGMA default_cache_size=20;
BEGIN;
CREATE TABLE t3 AS SELECT * FROM t2;
DELETE FROM t2;