HHH-18403 Disable returning clause support for updates on DB2 for i
This commit is contained in:
parent
6bf3f15af3
commit
445c587924
|
@ -92,6 +92,12 @@ public class DB2iDialect extends DB2Dialect {
|
||||||
return true;
|
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.
|
* No support for sequences.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue