mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Update requirement marks due to wording improvements in the documentation.
FossilOrigin-Name: bf875a1c7fcb2b41a4d3bd741bb358a635b869d0b6fc9d24385cd5779686d78c
This commit is contained in:
@ -127,8 +127,8 @@ foreach {tn tbl droptrigger before after} {
|
||||
} $after
|
||||
}
|
||||
|
||||
# EVIDENCE-OF: R-50239-29811 Once removed, the trigger definition is no
|
||||
# longer present in the sqlite_master (or sqlite_temp_master) table and
|
||||
# EVIDENCE-OF: R-04950-25529 Once removed, the trigger definition is no
|
||||
# longer present in the sqlite_schema (or sqlite_temp_schema) table and
|
||||
# is not fired by any subsequent INSERT, UPDATE or DELETE statements.
|
||||
#
|
||||
# Test cases e_droptrigger-1.* test the first part of this statement
|
||||
|
@ -2528,8 +2528,8 @@ test_efkey_6 3 "ALTER TABLE tbl ADD COLUMN c DEFAULT 0 REFERENCES xx" 1
|
||||
#
|
||||
# Test that these adjustments are visible in the sqlite_master table.
|
||||
#
|
||||
# EVIDENCE-OF: R-63827-54774 The text of the child CREATE TABLE
|
||||
# statement or statements stored in the sqlite_master table are modified
|
||||
# EVIDENCE-OF: R-43040-62530 The text of the child CREATE TABLE
|
||||
# statement or statements stored in the sqlite_schema table are modified
|
||||
# to reflect the new parent table name.
|
||||
#
|
||||
do_test e_fkey-56.1 {
|
||||
|
@ -15,10 +15,10 @@
|
||||
# EVIDENCE-OF: R-15402-03103 PRAGMA schema.foreign_key_check; PRAGMA
|
||||
# schema.foreign_key_check(table-name);
|
||||
#
|
||||
# EVIDENCE-OF: R-23918-17301 The foreign_key_check pragma checks the
|
||||
# EVIDENCE-OF: R-41653-15278 The foreign_key_check pragma checks the
|
||||
# database, or the table called "table-name", for foreign key
|
||||
# constraints that are violated and returns one row of output for each
|
||||
# violation.
|
||||
# constraints that are violated. The foreign_key_check pragma returns
|
||||
# one row output for each foreign key violation.
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
|
@ -142,9 +142,8 @@ do_test hook-4.1.1a {
|
||||
set ::update_hook {}
|
||||
db update_hook [list lappend ::update_hook]
|
||||
#
|
||||
# EVIDENCE-OF: R-52223-27275 The update hook is not invoked when
|
||||
# internal system tables are modified (i.e. sqlite_master and
|
||||
# sqlite_sequence).
|
||||
# EVIDENCE-OF: R-24531-54682 The update hook is not invoked when
|
||||
# internal system tables are modified (i.e. sqlite_sequence).
|
||||
#
|
||||
execsql {
|
||||
CREATE TABLE t1(a INTEGER PRIMARY KEY, b);
|
||||
|
Reference in New Issue
Block a user