File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff 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" ),
You can’t perform that action at this time.
0 commit comments