#698 - History DDL generation for Postgres does not respect non-public schema

This commit is contained in:
Robin Bygrave
2016-05-12 14:32:38 +12:00
parent b384cb4043
commit 4ab5cdf841
@@ -131,11 +131,11 @@ public abstract class DbTriggerBasedHistoryDdl implements PlatformHistoryDdl {
}
protected String historyTableName(String baseTableName) {
return normalise(baseTableName) + historySuffix;
return baseTableName + historySuffix;
}
protected String procedureName(String baseTableName) {
return normalise(baseTableName) + "_history_version";
return baseTableName + "_history_version";
}
protected String triggerName(String baseTableName) {