Skip to content

Commit

Permalink
pass schema name to drop index statement
Browse files Browse the repository at this point in the history
git-svn-id: http://liquibase.jira.com/svn/CORE/branches/1_9@960 e6edf6fb-f266-4316-afb4-e53d95876a76
  • Loading branch information
nvoxland committed Jun 19, 2009
1 parent e9fb856 commit b682dce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ public String getSqlStatement(Database database) throws StatementNotSupportedOnD
return "DROP INDEX " + database.escapeTableName(schemaName, getTableName()) + "." + database.escapeIndexName(null, getIndexName());
}

return "DROP INDEX " + database.escapeIndexName(null, getIndexName());
return "DROP INDEX " + database.escapeIndexName(schemaName, getIndexName());
}

public String getEndDelimiter(Database database) {
Expand Down

0 comments on commit b682dce

Please sign in to comment.