summaryrefslogtreecommitdiff
path: root/src/elab.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-14 15:24:59 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-14 15:24:59 -0400
commit9a65eddb59384f5784ed3ef0a641ca65b52645ce (patch)
tree6c2cbea03ee39858bde49e54932e19e744ba84c6 /src/elab.sml
parent14fbe79a3735e547f03cd8e95ca925fbdbb1841a (diff)
Elaborating 'SELECT *' queries
Diffstat (limited to 'src/elab.sml')
-rw-r--r--src/elab.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elab.sml b/src/elab.sml
index 25ec6a79..66f5f3ed 100644
--- a/src/elab.sml
+++ b/src/elab.sml
@@ -119,7 +119,7 @@ datatype sgn_item' =
| SgiStr of string * int * sgn
| SgiSgn of string * int * sgn
| SgiConstraint of con * con
- | SgiTable of string * int * con
+ | SgiTable of int * string * int * con
and sgn' =
SgnConst of sgn_item list
@@ -143,7 +143,7 @@ datatype decl' =
| DFfiStr of string * int * sgn
| DConstraint of con * con
| DExport of int * sgn * str
- | DTable of string * int * con
+ | DTable of int * string * int * con
and str' =
StrConst of decl list