Skip to content

Commit 019a0dd

Browse files
committed
Drop incorrectly ported test cases
1 parent 4c9f3e6 commit 019a0dd

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,6 @@ class SQLQuerySuite extends QueryTest {
4848
ORDER BY value) a""").collect().toSeq)
4949
}
5050

51-
test("double nested data") {
52-
sparkContext.parallelize(Nested1(Nested2(Nested3(1))) :: Nil).registerTempTable("nested")
53-
checkAnswer(
54-
sql("SELECT f1.f2.f3 FROM nested"),
55-
1)
56-
}
57-
58-
test("test CTAS") {
59-
checkAnswer(sql("CREATE TABLE test_ctas_123 AS SELECT key, value FROM src"), Seq.empty[Row])
60-
checkAnswer(
61-
sql("SELECT key, value FROM test_ctas_123 ORDER BY key"),
62-
sql("SELECT key, value FROM src ORDER BY key").collect().toSeq)
63-
}
64-
6551
test("SPARK-3708 Backticks aren't handled correctly is aliases") {
6652
checkAnswer(
6753
sql("SELECT k FROM (SELECT `key` AS `k` FROM src) a"),

0 commit comments

Comments
 (0)