We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77a4d6 commit ebba446Copy full SHA for ebba446
sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
@@ -2700,23 +2700,6 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
2700
|ON (((t2.a) = (t1.a)) AND ((t2.a) = (t1.int_col))) AND ((t2.a) = (t1.b))
2701
""".stripMargin).count() > 0
2702
)
2703
-
2704
- //sql("CREATE TEMPORARY VIEW foo(a) AS VALUES (CAST(-993 AS BIGINT))")
2705
2706
- /*sql(
2707
- """
2708
- |SELECT
2709
- |*
2710
- |FROM (
2711
- | SELECT
2712
- | COALESCE(t1.a, t2.a) AS int_col,
2713
- | t1.a,
2714
- | t2.a AS b
2715
- | FROM foo t1
2716
- | CROSS JOIN foo t2
2717
- |) t1
2718
- |INNER JOIN foo t2 ON (((t2.a) = (t1.a)) AND ((t2.a) = (t1.int_col))) AND ((t2.a) = (t1.b))
2719
- """.stripMargin).collect()*/
2720
}
2721
2722
0 commit comments