Skip to content

Commit

Permalink
1849763 - Fixed bug introduced in refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Dec 13, 2007
1 parent 5b1ace6 commit a390fc4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -118,7 +118,7 @@ private void executeScript(Statement st) throws SQLException {
}

private boolean checkStatementEnds(String s) {
return (s.indexOf(delimiter) != -1);
return s.trim().endsWith("" + delimiter);
}

}

0 comments on commit a390fc4

Please sign in to comment.