1
Fork 0

start adding basic dml

parser and pretty printer for statements
add query statement
add support for
  insert
  update
  delete
  truncate
bonus ddl:
  limited create schema
  drop schema

add grammar notes to the new test files
This commit is contained in:
Jake Wheat 2015-08-01 20:26:00 +03:00
parent 6fc8869f73
commit dfa84072dc
13 changed files with 684 additions and 2238 deletions
tools/Language/SQL/SimpleSQL

View file

@ -2476,6 +2476,9 @@ Specify a function yielding a value of a multiset type.
<multiset set function> ::=
SET <left paren> <multiset value expression> <right paren>
TODO: set is now a reserved keyword. Fix the set parsing with a
special case term.
> multisetValueFunction :: TestItem
> multisetValueFunction = Group "multiset value function"
> $ map (uncurry (TestValueExpr SQL2011))