1
Fork 0

add support for full table aliases

This commit is contained in:
Jake Wheat 2013-12-14 00:37:34 +02:00
parent d005dc1706
commit 15c83555ff
4 changed files with 11 additions and 6 deletions
Language/SQL/SimpleSQL

View file

@ -99,7 +99,7 @@
> data TableRef = SimpleTableRef String
> | JoinTableRef JoinType TableRef TableRef (Maybe JoinCondition)
> | JoinParens TableRef
> | JoinAlias TableRef String
> | JoinAlias TableRef String (Maybe [String])
> | JoinQueryExpr QueryExpr
> deriving (Eq,Show)