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) AS a, AVG(class) AS c FOR (name, age) IN (('John', 30) AS c1, ('Mike', 40) AS c2) ); ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
