1
Fork 0

fix/work around issues with the keywords parsing

fix the infix and postfix keywords parsing
minor refactoring
This commit is contained in:
Jake Wheat 2014-04-18 17:51:57 +03:00
parent b0f1e044b4
commit 438e3383e4
3 changed files with 25 additions and 25 deletions
Language/SQL/SimpleSQL

View file

@ -127,12 +127,12 @@
> -- Maybe String is for the
> -- indicator, e.g. :var
> -- indicator :nl
> | QuantifiedComparison
> | QuantifiedComparison
> ValueExpr
> [Name] -- operator
> CompPredQuantifier
> QueryExpr
> | Match ValueExpr Bool -- true if unique
> | Match ValueExpr Bool -- true if unique
> QueryExpr
> | Array ValueExpr [ValueExpr] -- ^ represents an array
> -- access expression, or an array ctor
@ -157,7 +157,6 @@
> | PrecScaleTypeName String Integer Integer
> deriving (Eq,Show,Read,Data,Typeable)
> -- | Used for 'expr in (value expression list)', and 'expr in
> -- (subquery)' syntax.
> data InPredValue = InList [ValueExpr]