iffyio merged PR #1970:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1970
--
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 #1970:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1970#discussion_r2262413180
##
tests/sqlparser_common.rs:
##
@@ -10875,7 +10875,10 @@ fn parse_pivot_table() {
expected_function("b", Some("t")),
Review Comment:
chenkovsky commented on code in PR #1970:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1970#discussion_r2249219058
##
src/parser/mod.rs:
##
@@ -13828,7 +13840,13 @@ impl<'a> Parser<'a> {
self.expect_token(&Token::LParen)?;
let aggregate_function
iffyio commented on code in PR #1970:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1970#discussion_r2249139287
##
src/parser/mod.rs:
##
@@ -13828,7 +13840,13 @@ impl<'a> Parser<'a> {
self.expect_token(&Token::LParen)?;
let aggregate_functions =
chenkovsky opened a new pull request, #1970:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1970
https://spark.apache.org/docs/latest/sql-ref-syntax-qry-select-pivot.html
currently this sql is not supported.
```
SELECT * FROM person
PIVOT (
SUM(age)