2 set testdir [file dirname $argv0]
3 source $testdir/tester.tcl
5 set ::testprefix tkt-c48d99d690
10 CREATE TABLE t2(a, b);
11 INSERT INTO t1 VALUES('one' , 1);
12 INSERT INTO t1 VALUES('two' , 5);
13 INSERT INTO t1 VALUES('two' , 2);
14 INSERT INTO t1 VALUES('three', 3);
15 PRAGMA count_changes = 1;
20 execsql { INSERT INTO t2 SELECT * FROM t1 }
23 do_test 1.2 { execsql VACUUM } {}