Re: [PR] feat: support multiple value for pivot [datafusion-sqlparser-rs]

2025-08-20 Thread via GitHub
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

Re: [PR] feat: support multiple value for pivot [datafusion-sqlparser-rs]

2025-08-08 Thread via GitHub
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:

Re: [PR] feat: support multiple value for pivot [datafusion-sqlparser-rs]

2025-08-02 Thread via GitHub
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

Re: [PR] feat: support multiple value for pivot [datafusion-sqlparser-rs]

2025-08-01 Thread via GitHub
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 =

[PR] feat: support multiple value for pivot [datafusion-sqlparser-rs]

2025-07-23 Thread via GitHub
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)