Skip to content

Commit

Permalink
remove commented code.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxb1987 committed Oct 1, 2016
1 parent b77a4d6 commit ebba446
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2700,23 +2700,6 @@ class SQLQuerySuite extends QueryTest with SharedSQLContext {
|ON (((t2.a) = (t1.a)) AND ((t2.a) = (t1.int_col))) AND ((t2.a) = (t1.b))
""".stripMargin).count() > 0
)

//sql("CREATE TEMPORARY VIEW foo(a) AS VALUES (CAST(-993 AS BIGINT))")

/*sql(
"""
|SELECT
|*
|FROM (
| SELECT
| COALESCE(t1.a, t2.a) AS int_col,
| t1.a,
| t2.a AS b
| FROM foo t1
| CROSS JOIN foo t2
|) t1
|INNER JOIN foo t2 ON (((t2.a) = (t1.a)) AND ((t2.a) = (t1.int_col))) AND ((t2.a) = (t1.b))
""".stripMargin).collect()*/
}
}
}

0 comments on commit ebba446

Please sign in to comment.