diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-14 11:02:18 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-14 11:02:18 -0400 |
commit | c81c24b4feb3fae3c13861f1bcaafab697a6bb7e (patch) | |
tree | 4f168489261d0202a9d664e548dd71a10665df46 /src/core.sml | |
parent | 0faed8b64498534297bd797108b659802815aefc (diff) |
SQL sequences
Diffstat (limited to 'src/core.sml')
-rw-r--r-- | src/core.sml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.sml b/src/core.sml index 0eef7e96..1fcf26c4 100644 --- a/src/core.sml +++ b/src/core.sml @@ -115,6 +115,7 @@ datatype decl' = | DValRec of (string * int * con * exp * string) list | DExport of export_kind * int | DTable of string * int * con * string + | DSequence of string * int * string | DDatabase of string withtype decl = decl' located |