| # 2021 February 18 |
| # |
| # 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. |
| # |
| #************************************************************************* |
| # |
| |
| set testdir [file dirname $argv0] |
| source $testdir/tester.tcl |
| source $testdir/malloc_common.tcl |
| set testprefix altermalloc3 |
| |
| # If SQLITE_OMIT_ALTERTABLE is defined, omit this file. |
| ifcapable !altertable { |
| finish_test |
| return |
| } |
| |
| do_execsql_test 1.0 { |
| CREATE TABLE x1( |
| one, two, three, PRIMARY KEY(one), |
| CHECK (three!="xyz"), CHECK (two!="one") |
| ) WITHOUT ROWID; |
| CREATE INDEX x1i ON x1(one+"two"+"four") WHERE "five"; |
| CREATE TEMP TRIGGER AFTER INSERT ON x1 BEGIN |
| UPDATE x1 SET two=new.three || "new" WHERE one=new.one||""; |
| END; |
| CREATE TABLE t1(a, b, c, d, PRIMARY KEY(d, b)) WITHOUT ROWID; |
| INSERT INTO t1 VALUES(1, 2, 3, 4); |
| } |
| faultsim_save_and_close |
| |
| do_faultsim_test 1 -prep { |
| faultsim_restore_and_reopen |
| } -body { |
| execsql { ALTER TABLE t1 DROP COLUMN c } |
| } -test { |
| faultsim_test_result {0 {}} |
| } |
| |
| |
| finish_test |