1
Fork 0

support two double quotes in quoted identifier plus unicode quoted identifier syntax

This commit is contained in:
Jake Wheat 2014-04-18 21:09:46 +03:00
parent 4e1a1da820
commit f64632bbac
4 changed files with 33 additions and 11 deletions
Language/SQL/SimpleSQL

View file

@ -155,6 +155,7 @@
> -- | Represents an identifier name, which can be quoted or unquoted.
> data Name = Name String
> | QName String
> | UQName String
> deriving (Eq,Show,Read,Data,Typeable)
TODO: add ref and scope, any others?