diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-09 14:59:29 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-09 14:59:29 -0400 |
commit | 1852c67500474c5170a0b666ca68591dbbc29df3 (patch) | |
tree | 8052e6baf99774d61edc40c73a4d2ea997f9707d /tests/cst.ur | |
parent | b167bec378ae4577ba2994e0621bf01a44832d34 (diff) |
Retry failed record summary unifications at the end, in hopes that more has been learned
Diffstat (limited to 'tests/cst.ur')
-rw-r--r-- | tests/cst.ur | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/cst.ur b/tests/cst.ur index cbaa36ed..2db083f7 100644 --- a/tests/cst.ur +++ b/tests/cst.ur @@ -22,9 +22,9 @@ table t : {A : int, B : int, C : option int} CONSTRAINT ForAB FOREIGN KEY (A, B) REFERENCES u (D, C) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT ForBA FOREIGN KEY (A, B) REFERENCES u (C, D) ON UPDATE NO ACTION, CONSTRAINT ForB FOREIGN KEY B REFERENCES u (E), - CONSTRAINT ForC FOREIGN KEY C REFERENCES u (C) + CONSTRAINT ForC FOREIGN KEY C REFERENCES u (C), - (*CONSTRAINT Self FOREIGN KEY B REFERENCES t (B)*) + CONSTRAINT Self FOREIGN KEY B REFERENCES t (B) table s : {B : option int} CONSTRAINT UniB UNIQUE B |