Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bozhang2820 committed Feb 16, 2022
1 parent afaabe8 commit 65b7b18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ trait ShowCreateTableSuiteBase extends command.ShowCreateTableSuiteBase
|COMMENT 'This is a comment'
|TBLPROPERTIES ('prop1' = '1', 'prop2' = '2', 'prop3' = 3, 'prop4' = 4)
|PARTITIONED BY (a)
|LOCATION '/tmp'
|LOCATION 'file:/tmp'
""".stripMargin)
val showDDL = getShowCreateDDL(t)
assert(showDDL === Array(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class ShowCreateTableSuite extends command.ShowCreateTableSuiteBase with Command
"'via' = '2')",
"PARTITIONED BY (a)",
"COMMENT 'This is a comment'",
"LOCATION 'file:///tmp'",
"LOCATION 'file:/tmp'",
"TBLPROPERTIES (",
"'prop1' = '1',",
"'prop2' = '2',",
Expand Down

0 comments on commit 65b7b18

Please sign in to comment.