Skip to content

Commit

Permalink
0005123: ASE, ASA, and MSSQL support for stream lob optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
joshahicks committed Jan 12, 2022
1 parent 26b2916 commit 3185473
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -482,10 +482,10 @@ protected String replaceTemplateVariables(DataEventType dml, Trigger trigger,
oldTriggerValue, oldColumnPrefix, table, orderedColumns, dml, true, channel,
trigger).toString() : "null", ddl);
String oldddl = null;
while (ddl != null && (!ddl.equals(oldddl))) {
oldddl = ddl;
ddl = eval(columnString.isBlobClob, "containsBlobClobColumns", ddl);
}
for (oldddl = null; ddl != null && !ddl.equals(oldddl); ddl = this
.eval(columnString.isBlobClob && !trigger.isUseStreamLobs(), "containsBlobClobColumns", ddl)) {
oldddl = ddl;
}
oldddl = null;
// some column templates need tableName and schemaName
ddl = FormatUtils.replace("tableName", SymmetricUtils.quote(symmetricDialect, table.getName()), ddl);
Expand Down

0 comments on commit 3185473

Please sign in to comment.