1
Fork 0

Allow qualified names ('schema.table') in from clauses

This commit is contained in:
Sönke Hahn 2014-01-22 15:54:14 +08:00
parent fd42a3cd73
commit 2e91fb9e81
4 changed files with 7 additions and 0 deletions
Language/SQL/SimpleSQL

View file

@ -282,6 +282,8 @@ I'm not sure if this is valid syntax or not.
> -- | Represents a entry in the csv of tables in the from clause.
> data TableRef = -- | from t
> TRSimple Name
> -- | from s.t
> | TRQualified Name Name
> -- | from a join b
> | TRJoin TableRef JoinType TableRef (Maybe JoinCondition)
> -- | from (a)