aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cjr.sml
diff options
context:
space:
mode:
Diffstat (limited to 'src/cjr.sml')
-rw-r--r--src/cjr.sml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cjr.sml b/src/cjr.sml
index 4d6608ce..0f261de6 100644
--- a/src/cjr.sml
+++ b/src/cjr.sml
@@ -76,7 +76,8 @@ datatype exp' =
state : typ,
query : exp,
body : exp,
- initial : exp }
+ initial : exp,
+ prepared : int option }
withtype exp = exp' located
@@ -90,6 +91,7 @@ datatype decl' =
| DTable of string * (string * typ) list
| DDatabase of string
+ | DPreparedStatements of (string * int) list
withtype decl = decl' located