Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed a typo in alter3.test. (CVS 2396) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
698be25d3e8f0eb2b5a4c6c7d20343b3 |
User & Date: | drh 2005-03-17 12:33:14.000 |
Context
2005-03-18
| ||
14:03 | Remove unused code from util.c. Enhance the trace output in os_unix.c. (CVS 2397) (check-in: f2f31919fd user: drh tags: trunk) | |
2005-03-17
| ||
12:33 | Fixed a typo in alter3.test. (CVS 2396) (check-in: 698be25d3e user: drh tags: trunk) | |
07:00 | Don't run the tests in alter3.test if SQLITE_OMIT_ALTERTABLE is defined. (CVS 2395) (check-in: 800fb3bf06 user: danielk1977 tags: trunk) | |
Changes
Changes to test/alter3.test.
︙ | ︙ | |||
9 10 11 12 13 14 15 | # #************************************************************************* # This file implements regression tests for SQLite library. The # focus of this script is testing that SQLite can handle a subtle # file format change that may be used in the future to implement # "ALTER TABLE ... ADD COLUMN". # | | | | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # #************************************************************************* # This file implements regression tests for SQLite library. The # focus of this script is testing that SQLite can handle a subtle # file format change that may be used in the future to implement # "ALTER TABLE ... ADD COLUMN". # # $Id: alter3.test,v 1.3 2005/03/17 12:33:14 drh Exp $ # set testdir [file dirname $argv0] # If SQLITE_OMIT_ALTERTABLE is defined, omit this file. ifcapable !altertable { finish_test return } source $testdir/tester.tcl # Test Organisation: # ------------------ # # alter3-1.*: Test that ALTER TABLE correctly modifies the CREATE TABLE sql. # alter3-2.*: Test error messages. # alter3-3.*: Test adding columns with default value NULL. |
︙ | ︙ | |||
333 334 335 336 337 338 339 | VACUUM; } get_file_format } {1} } finish_test | < | 333 334 335 336 337 338 339 | VACUUM; } get_file_format } {1} } finish_test |