Skip to content

Commit

Permalink
0004998: Firebird error while dropping trigger, token unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed May 19, 2021
1 parent fba6f09 commit b04e267
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -294,7 +294,7 @@ public Set<String> getSqlKeywords() {
}

protected String getDropTriggerSql(StringBuilder sqlBuffer, String catalogName, String schemaName, String triggerName, String tableName) {
schemaName = schemaName == null ? "" : (schemaName + ".");
schemaName = StringUtils.isBlank(schemaName) ? "" : (schemaName + ".");
return "drop trigger " + schemaName + triggerName;
}

Expand Down

0 comments on commit b04e267

Please sign in to comment.