-
-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for LATERAL queries #156
Comments
Hi, thanks for the feedback. You're right, this syntax is not supported as of today :( Adding that to the todo list, but I think this ought to be a pretty low priority compared to other issues (I'm not sure if this keyword is used much). Sorry ... To others:👍 the thread if you find this issue important |
I've never seen the syntax before encountering it on that database view. I've found a way to avoid using that database view, so I'm able to continue using |
It's a very common pattern. For us, it makes pg-mem totally useless, even it's a brillant idea and a great project 👍 Is there anything we can do to help to implement it @oguimbal ? Corresponding issue in the parser repo : oguimbal/pgsql-ast-parser#122 |
@oguimbal I agree with @abenhamdine. |
Hello, I ran across a database view whose syntax doesn't seem to be supported by pg-mem and the console error suggested opening up an issue and providing an example query.
I'm binding this SQL view in the
@ViewEntity
decorator for a TypeORM model, whoseexpression
is just this raw SQL:And the error I was seeing is essentially just this:
Am I interpreting this correctly that the error is just because the
LATERAL
keyword is unexpected?The text was updated successfully, but these errors were encountered: