1
Fork 0

add support for functions in tablerefs

This commit is contained in:
Jake Wheat 2013-12-17 12:33:33 +02:00
parent adfeac8d16
commit d49b3ddb99
5 changed files with 15 additions and 6 deletions
tools/Language/SQL/SimpleSQL

View file

@ -13,6 +13,9 @@ expression
> [("select a from t"
> ,ms [TRSimple "t"])
> ,("select a from f(a)"
> ,ms [TRFunction "f" [Iden "a"]])
> ,("select a from t,u"
> ,ms [TRSimple "t", TRSimple "u"])