Skip to content

Commit

Permalink
0002385: No need to create functions and enable and disable triggers on
Browse files Browse the repository at this point in the history
greenplum where triggers are not supported
  • Loading branch information
chenson42 committed Sep 9, 2015
1 parent 20bf09c commit 4f7b765
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -21,6 +21,7 @@
package org.jumpmind.symmetric.db.postgresql;

import org.jumpmind.db.platform.IDatabasePlatform;
import org.jumpmind.db.sql.ISqlTransaction;
import org.jumpmind.symmetric.service.IParameterService;

public class GreenplumSymmetricDialect extends PostgreSqlSymmetricDialect {
Expand All @@ -30,4 +31,16 @@ public GreenplumSymmetricDialect(IParameterService parameterService, IDatabasePl
this.triggerTemplate = new GreenplumTriggerTemplate(this);
}

@Override
public void createRequiredDatabaseObjects() {
}

@Override
public void enableSyncTriggers(ISqlTransaction transaction) {
}

@Override
public void disableSyncTriggers(ISqlTransaction transaction) {
}

}

0 comments on commit 4f7b765

Please sign in to comment.