HHH-18403 Disable returning clause support for updates on DB2 for i
This commit is contained in:
parent
f12ed1ce2c
commit
1f8d6f0339
|
@ -97,6 +97,12 @@ public class DB2iDialect extends DB2Dialect {
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsUpdateReturning() {
|
||||
// Only supported for insert statements on DB2 for i: https://www.ibm.com/docs/en/i/7.1?topic=clause-table-reference
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* No support for sequences.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue