Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix minor typos in the new test file. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3cbb9b1b4f8c5c2735799e84dc806145 |
User & Date: | mistachkin 2014-03-04 11:54:35.173 |
Context
2014-03-04
| ||
12:07 | Fix comment in test. (check-in: 1e57f67b20 user: mistachkin tags: trunk) | |
11:54 | Fix minor typos in the new test file. (check-in: 3cbb9b1b4f user: mistachkin tags: trunk) | |
11:35 | Add tests to verify the fix for bug [4ef7e3cfca]. (check-in: 62410bb8a7 user: dan tags: trunk) | |
Changes
Changes to test/tkt-4ef7e3cfca.test.
|
| | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # 2014-03-04 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # # This file implements regression tests for SQLite library. The # focus of this file is testing WITHOUT ROWID tables. # set testdir [file dirname $argv0] source $testdir/tester.tcl set testprefix tkt-4ef7e3cfca do_catchsql_test 1.1 { CREATE TABLE x(a); CREATE TRIGGER t AFTER INSERT ON x BEGIN SELECT * FROM x WHERE abc.a = 1; END; INSERT INTO x VALUES('assert'); |
︙ | ︙ | |||
61 62 63 64 65 66 67 | END; INSERT INTO w VALUES('assert'); } do_execsql_test 3.2 { SELECT * FROM z; } {15} | < < < | 61 62 63 64 65 66 67 68 | END; INSERT INTO w VALUES('assert'); } do_execsql_test 3.2 { SELECT * FROM z; } {15} finish_test |