Skip to content

Commit 88e7422

Browse files
committed
Fix tests
1 parent 1991988 commit 88e7422

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class HiveExplainSuite extends QueryTest with SQLTestUtils with TestHiveSingleto
5353
"== Analyzed Logical Plan ==",
5454
"== Optimized Logical Plan ==",
5555
"== Physical Plan ==",
56-
"CreateTableAsSelect",
56+
"CreateHiveTableAsSelect",
5757
"InsertIntoHiveTable",
5858
"Limit",
5959
"src")
@@ -71,7 +71,7 @@ class HiveExplainSuite extends QueryTest with SQLTestUtils with TestHiveSingleto
7171
"== Analyzed Logical Plan ==",
7272
"== Optimized Logical Plan ==",
7373
"== Physical Plan ==",
74-
"CreateTableAsSelect",
74+
"CreateHiveTableAsSelect",
7575
"InsertIntoHiveTable",
7676
"Limit",
7777
"src")
@@ -92,7 +92,7 @@ class HiveExplainSuite extends QueryTest with SQLTestUtils with TestHiveSingleto
9292
val shouldContain =
9393
"== Parsed Logical Plan ==" :: "== Analyzed Logical Plan ==" :: "Subquery" ::
9494
"== Optimized Logical Plan ==" :: "== Physical Plan ==" ::
95-
"CreateTableAsSelect" :: "InsertIntoHiveTable" :: "jt" :: Nil
95+
"CreateHiveTableAsSelect" :: "InsertIntoHiveTable" :: "jt" :: Nil
9696
for (key <- shouldContain) {
9797
assert(outputs.contains(key), s"$key doesn't exist in result")
9898
}

0 commit comments

Comments
 (0)