Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed Aug 17, 2019
1 parent 99968b9 commit 24f95b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ class DDLParserSuite extends AnalysisTest {
parseCompare("DROP TABLE db.tab",
DropTableStatement(Seq("db", "tab"), ifExists = false, purge = false))
parseCompare("DROP TABLE IF EXISTS db.tab",
DropTableStatement(Seq("db", "ta"), ifExists = true, purge = false))
DropTableStatement(Seq("db", "tab"), ifExists = true, purge = false))
parseCompare("DROP TABLE tab",
DropTableStatement(Seq("tab"), ifExists = false, purge = false))
parseCompare("DROP TABLE IF EXISTS tab",
Expand Down

0 comments on commit 24f95b7

Please sign in to comment.