Re: [PR] Support arbitrary composite access expressions [datafusion-sqlparser-rs]

2024-12-28 Thread via GitHub
alamb commented on PR #1600: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1600#issuecomment-2564362929 - BTW this seems to have caused a regression: https://github.com/apache/datafusion-sqlparser-rs/pull/1621. Thanks to @goldmedal and @iffyio for fixing -- This is an auto

Re: [PR] Support arbitrary composite access expressions [datafusion-sqlparser-rs]

2024-12-22 Thread via GitHub
iffyio merged PR #1600: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1600 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr

Re: [PR] Support arbitrary composite access expressions [datafusion-sqlparser-rs]

2024-12-18 Thread via GitHub
iffyio commented on code in PR #1600: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1600#discussion_r1890779913 ## tests/sqlparser_common.rs: ## @@ -12506,6 +12506,92 @@ fn parse_create_table_with_bit_types() { } } +#[test] +fn parse_composed_access_expr()

[PR] Support arbitrary composite access expressions [datafusion-sqlparser-rs]

2024-12-12 Thread via GitHub
ayman-sigma opened a new pull request, #1600: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1600 Right now the `CompositeAccess` expression is limited to support the PostgreSQL syntax like `SELECT (on_hand.item).name FROM on_hand WHERE (on_hand.item).price > 9`. This PR gen