diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 12:24:31 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-04-07 12:24:31 -0400 |
commit | b872b8f181d7f5d1917dc0e4802f8741c976215d (patch) | |
tree | b422a6ade536f96b318a9d9547f2f2c95562691a /src/source_print.sml | |
parent | 84bbd76f640d3e7718c090e229bb05d5f5e49eac (diff) |
UNIQUE constraints
Diffstat (limited to 'src/source_print.sml')
-rw-r--r-- | src/source_print.sml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/source_print.sml b/src/source_print.sml index 8d8b28c3..d1c9b6df 100644 --- a/src/source_print.sml +++ b/src/source_print.sml @@ -588,13 +588,17 @@ fun p_decl ((d, _) : decl) = | DExport str => box [string "export", space, p_str str] - | DTable (x, c) => box [string "table", - space, - string x, - space, - string ":", - space, - p_con c] + | DTable (x, c, e) => box [string "table", + space, + string x, + space, + string ":", + space, + p_con c, + space, + string "constraints", + space, + p_exp e] | DSequence x => box [string "sequence", space, string x] |