Skip to content

Commit

Permalink
Fix to syntax in SqlAnywhere dropTable function
Browse files Browse the repository at this point in the history
  • Loading branch information
klementinastojanovska committed Feb 1, 2018
1 parent 01c5d99 commit 380a444
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -150,7 +150,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 380a444

Please sign in to comment.