1
Fork 0

refactor the identifier syntax

This commit is contained in:
Jake Wheat 2016-02-12 14:13:47 +02:00
parent 52f035b718
commit aa5c2e89c7
16 changed files with 830 additions and 826 deletions
tools/Language/SQL/SimpleSQL

View file

@ -79,7 +79,7 @@ BEGIN is not in the standard!
> ,(TestStatement ansi2011
> "savepoint difficult_bit"
> $ Savepoint $ Name "difficult_bit")
> $ Savepoint $ Name Nothing "difficult_bit")
17.6 <release savepoint statement>
@ -89,7 +89,7 @@ BEGIN is not in the standard!
> ,(TestStatement ansi2011
> "release savepoint difficult_bit"
> $ ReleaseSavepoint $ Name "difficult_bit")
> $ ReleaseSavepoint $ Name Nothing "difficult_bit")
17.7 <commit statement>
@ -124,7 +124,7 @@ BEGIN is not in the standard!
> ,(TestStatement ansi2011
> "rollback to savepoint difficult_bit"
> $ Rollback $ Just $ Name "difficult_bit")
> $ Rollback $ Just $ Name Nothing "difficult_bit")
19 Session management