Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
SparkSql doesn't support COMMA JOIN for the cartesian product.
Hence, emulating COMMA JOIN as CROSS JOIN for SparkSqlDialect.
ex-
select * from table1, table2; (Not supported in Spark SQL)
select * from table1 CROSS JOIN table2; (Valid Spark SQL syntax)
Attachments
Issue Links
- relates to
-
CALCITE-4485 JDBC adapter generates invalid SQL when one of the joins is "INNER JOIN ... ON TRUE"
- Closed
- links to