2 #pragma ident "%Z%%M% %I% %E% SMI"
6 # The author disclaims copyright to this source code. In place of
7 # a legal notice, here is a blessing:
9 # May you do good and not evil.
10 # May you find forgiveness for yourself and forgive others.
11 # May you share freely, never taking more than you give.
13 #***********************************************************************
14 # This file implements regression tests for SQLite library.
16 # This file implements tests for foreign keys.
19 set testdir [file dirname $argv0]
20 source $testdir/tester.tcl
22 # Create a table and some data to work with.
27 a INTEGER PRIMARY KEY,
29 REFERENCES t1 ON DELETE CASCADE
32 FOREIGN KEY (b,c) REFERENCES t2(x,y) ON UPDATE CASCADE
39 x INTEGER PRIMARY KEY,
47 a INTEGER REFERENCES t2,
48 b INTEGER REFERENCES t1,
49 FOREIGN KEY (a,b) REFERENCES t2(x,y)