Skip to content

Commit

Permalink
Fix HiveCommandSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGekk committed Dec 6, 2020
1 parent 88ccb59 commit ff7bf27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ class HiveCommandSuite extends QueryTest with SQLTestUtils with TestHiveSingleto
val message2 = intercept[AnalysisException] {
sql("SHOW PARTITIONS parquet_tab4 PARTITION(abcd=2015, xyz=1)")
}.getMessage
assert(message2.contains("Non-partitioning column(s) [abcd, xyz] are specified"))
assert(message2.contains("abcd is not a valid partition column"))

val message3 = intercept[AnalysisException] {
sql("SHOW PARTITIONS parquet_view1")
Expand Down

0 comments on commit ff7bf27

Please sign in to comment.