Skip to content

Commit

Permalink
Minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxGekk committed Dec 5, 2020
1 parent b7e2481 commit cb0ea4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ trait ShowPartitionsSuiteBase extends QueryTest with SQLTestUtils {
sql(s"""
|CREATE TABLE $t (price int, qty int, year int, month int)
|$defaultUsing
|partitioned by (year, month)""".stripMargin)
|PARTITIONED BY (year, month)""".stripMargin)
sql(s"INSERT INTO $t PARTITION(year = 2015, month = 1) SELECT 1, 1")
Seq(
true -> "PARTITION(year = 2015, month = 1)",
Expand Down

0 comments on commit cb0ea4b

Please sign in to comment.