summaryrefslogtreecommitdiff
path: root/src/mono.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/mono.sml
parent0faed8b64498534297bd797108b659802815aefc (diff)
SQL sequences
Diffstat (limited to 'src/mono.sml')
-rw-r--r--src/mono.sml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mono.sml b/src/mono.sml
index b10f651c..4742c541 100644
--- a/src/mono.sml
+++ b/src/mono.sml
@@ -89,6 +89,7 @@ datatype exp' =
body : exp,
initial : exp }
| EDml of exp
+ | ENextval of exp
withtype exp = exp' located
@@ -100,6 +101,7 @@ datatype decl' =
| DExport of Core.export_kind * string * int * typ list
| DTable of string * (string * typ) list
+ | DSequence of string
| DDatabase of string
withtype decl = decl' located