Skip to content

Commit

Permalink
fix drop table statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Jul 28, 2014
1 parent bdd2e92 commit 462f296
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -158,7 +158,7 @@ protected void dropTable(Table table, StringBuilder ddl, boolean temporary, bool
printIndent(ddl);
ddl.append("DROP TABLE ");
ddl.append(getFullyQualifiedTableNameShorten(table));
ddl.append("END");
ddl.append(" END");
printEndOfStatement(ddl);
}

Expand Down

0 comments on commit 462f296

Please sign in to comment.