[jOOQ/jOOQ#7291] Fixed OSS edition
This commit is contained in:
parent
c3e5dd25a6
commit
e80491b652
@ -1616,7 +1616,7 @@ implements
|
||||
|
||||
for (MatchedClause m : matched) {
|
||||
if (m.delete) {
|
||||
if (emulate |= matchDelete )
|
||||
if (emulate |= matchDelete)
|
||||
break emulateCheck;
|
||||
|
||||
matchDelete = true;
|
||||
@ -1738,7 +1738,7 @@ implements
|
||||
MatchedClause m = update != null ? update : delete;
|
||||
|
||||
// [#7291] Standard SQL AND clause in updates
|
||||
if ((requireMatchedConditions || !(m.condition instanceof NoCondition)) && !NO_SUPPORT_AND.contains(ctx.dialect()))
|
||||
if ((requireMatchedConditions || !(m.condition instanceof NoCondition)))
|
||||
ctx.sql(' ').visit(K_AND).sql(' ').visit(m.condition);
|
||||
|
||||
ctx.sql(' ').visit(K_THEN);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user