writeable_schema = False
cu = connection.cursor()
+ # Disable foreign key constraints, if there is any foreign key violation.
+ violations = cu.execute("PRAGMA foreign_key_check").fetchall()
+ if violations:
+ yield('PRAGMA foreign_keys=OFF;')
yield('BEGIN TRANSACTION;')
# sqlite_master table contains the SQL CREATE statements for the database.
,
"CREATE TABLE t1(id integer primary key, s1 text, " \
"t1_i1 integer not null, i2 integer, unique (s1), " \
- "constraint t1_idx1 unique (i2));"
+ "constraint t1_idx1 unique (i2), " \
+ "constraint t1_i1_idx1 unique (t1_i1));"
,
"INSERT INTO \"t1\" VALUES(1,'foo',10,20);"
,
"t2_i2 integer, primary key (id)," \
"foreign key(t2_i1) references t1(t1_i1));"
,
+ # Foreign key violation.
+ "INSERT INTO \"t2\" VALUES(1,2,3);"
+ ,
"CREATE TRIGGER trigger_1 update of t1_i1 on t1 " \
"begin " \
"update t2 set t2_i1 = new.t1_i1 where t2_i1 = old.t1_i1; " \
[self.cu.execute(s) for s in expected_sqls]
i = self.cx.iterdump()
actual_sqls = [s for s in i]
- expected_sqls = ['BEGIN TRANSACTION;'] + expected_sqls + \
- ['COMMIT;']
+ expected_sqls = [
+ "PRAGMA foreign_keys=OFF;",
+ "BEGIN TRANSACTION;",
+ *expected_sqls,
+ "COMMIT;",
+ ]
[self.assertEqual(expected_sqls[i], actual_sqls[i])
for i in range(len(expected_sqls))]