Skip to content

Commit ebba446

Browse files
committed
remove commented code.
1 parent b77a4d6 commit ebba446

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,23 +2700,6 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
27002700
|ON (((t2.a) = (t1.a)) AND ((t2.a) = (t1.int_col))) AND ((t2.a) = (t1.b))
27012701
""".stripMargin).count() > 0
27022702
)
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()*/
27202703
}
27212704
}
27222705
}

0 commit comments

Comments
 (0)