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.sml7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mono_print.sml b/src/mono_print.sml
index ffc1d4fe..a233b400 100644
--- a/src/mono_print.sml
+++ b/src/mono_print.sml
@@ -438,6 +438,13 @@ fun p_decl env (dAll as (d, _) : decl) =
| DSequence s => box [string "(* SQL sequence ",
string s,
string "*)"]
+ | DView (s, _, e) => box [string "(* SQL view ",
+ string s,
+ space,
+ string "as",
+ space,
+ p_exp env e,
+ string "*)"]
| DDatabase {name, expunge, initialize} => box [string "database",
space,
string name,