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 35b2dcb commit f7a47ae
Showing 1 changed file with 5 additions and 4 deletions.
Expand Up @@ -583,10 +583,11 @@ protected String replaceTemplateVariables(DataEventType dml, Trigger trigger,
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
Expand Down

0 comments on commit f7a47ae

Please sign in to comment.