oguimbal / pgsql-ast-parser

Yet another simple Postgres SQL parser
304 stars 43 forks source link

Does not support lateral joins #122

Closed akg1 closed 11 months ago

akg1 commented 1 year ago

Any query using lateral joins, eg:

select 
    *
from
    test
inner join lateral (
    select 
        *
    from 
        test2
    where 
        test2.foo = test1.bar
) test2_inner on true

Doesn't work.