summaryrefslogtreecommitdiff
path: root/src/mono_print.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono_print.sml')
-rw-r--r--src/mono_print.sml12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mono_print.sml b/src/mono_print.sml
index 450c5bee..3c090124 100644
--- a/src/mono_print.sml
+++ b/src/mono_print.sml
@@ -313,6 +313,18 @@ fun p_decl env (dAll as (d, _) : decl) =
p_typ env t,
string ")"]) ts]
+ | DTable (s, xts) => box [string "(* SQL table ",
+ string s,
+ space,
+ string ":",
+ space,
+ p_list (fn (x, t) => box [string x,
+ space,
+ string ":",
+ space,
+ p_typ env t]) xts,
+ space,
+ string "*)"]
| DDatabase s => box [string "database",
space,
string s]