Skip to content

Commit

Permalink
Merge branch '3.9' of https://github.com/JumpMind/symmetric-ds into 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
klementinastojanovska committed Jul 28, 2017
2 parents 33f9604 + 26e114f commit 871fa65
Showing 1 changed file with 18 additions and 2 deletions.
Expand Up @@ -28,6 +28,7 @@
import org.jumpmind.symmetric.common.ParameterConstants;
import org.jumpmind.symmetric.db.AbstractSymmetricDialect;
import org.jumpmind.symmetric.db.ISymmetricDialect;
import org.jumpmind.symmetric.model.Trigger;
import org.jumpmind.symmetric.service.IParameterService;

public class NuoDbSymmetricDialect extends AbstractSymmetricDialect implements ISymmetricDialect {
Expand All @@ -46,8 +47,13 @@ public NuoDbSymmetricDialect(IParameterService parameterService, IDatabasePlatfo

@Override
public boolean supportsTransactionId() {
return false;
}
return true;
}

public String getTransactionTriggerExpression(String defaultCatalog, String defaultSchema,
Trigger trigger) {
return "(select transid from system.connections where connid = getconnectionid())";
}

@Override
public void createRequiredDatabaseObjects() {
Expand Down Expand Up @@ -122,6 +128,16 @@ public void cleanDatabase() {
// }
// }

@Override
public boolean isClobSyncSupported() {
return false;
}

@Override
public boolean isBlobSyncSupported() {
return false;
}

@Override
public BinaryEncoding getBinaryEncoding() {
return BinaryEncoding.NONE;
Expand Down

0 comments on commit 871fa65

Please sign in to comment.