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
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
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()
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