aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/expl_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-14 11:02:18 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-14 11:02:18 -0400
commitc81c24b4feb3fae3c13861f1bcaafab697a6bb7e (patch)
tree4f168489261d0202a9d664e548dd71a10665df46 /src/expl_print.sml
parent0faed8b64498534297bd797108b659802815aefc (diff)
SQL sequences
Diffstat (limited to 'src/expl_print.sml')
-rw-r--r--src/expl_print.sml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/expl_print.sml b/src/expl_print.sml
index 10819fbc..dd328bb5 100644
--- a/src/expl_print.sml
+++ b/src/expl_print.sml
@@ -436,6 +436,9 @@ fun p_sgn_item env (sgi, _) =
string ":",
space,
p_con env c]
+ | SgiSequence (_, x, n) => box [string "sequence",
+ space,
+ p_named x n]
and p_sgn env (sgn, loc) =
case sgn of
@@ -584,6 +587,9 @@ fun p_decl env (dAll as (d, _) : decl) =
string ":",
space,
p_con env c]
+ | DSequence (_, x, n) => box [string "sequence",
+ space,
+ p_named x n]
| DDatabase s => box [string "database",
space,
string s]