summaryrefslogtreecommitdiff
path: root/tests/cst.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-04-09 14:59:29 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-04-09 14:59:29 -0400
commitda10cbf6f232203ba7c798906ba8101078e2a9c9 (patch)
tree8052e6baf99774d61edc40c73a4d2ea997f9707d /tests/cst.ur
parentf181919900b537dca8d42760c4131da446a7e00d (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.ur4
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