-
Notifications
You must be signed in to change notification settings - Fork 178
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
Added support for SQL function bodies #513
Conversation
- Renamed TokenizedSql to ParsedSql - Lexing/parsing is now done in two steps: first only tokenize, then parse into statements - Added support for function bodies ("BEGIN ATOMIC") - Added a test case for newly supported grammar
Thanks for the PR. The rename refactoring makes it impossible to identify the changes that enabled the new feature. Could you split the change into two commits (one that renames things, the other introducing the actual change) for easier review? |
- Renamed TokenizedSql to ParsedSql
…parse into statements - Added support for function bodies ("BEGIN ATOMIC") - Added a test case for newly supported grammar
I split the PR a bit, I hope it's reviewable now. I could've done a lot better, though. Can you work with this? |
Thanks a lot. I'm currently polishing up the PR and preparing for the merge. |
Thank you for your contribution. That's merged, polished, and backported now. |
Make sure that:
Issue description
See #512
New Public APIs
N/A
Additional context