3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this file is testing the VACUUM statement.
14 # $Id: vacuum2.test,v 1.1 2005/02/16 03:27:08 drh Exp $
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 # If the VACUUM statement is disabled in the current build, skip all
20 # the tests in this file.
31 # Ticket #1121 - make sure vacuum works if all autoincrement tables
36 CREATE TABLE t1(x INTEGER PRIMARY KEY AUTOINCREMENT, y);