HHH-18403 Disable returning clause support for updates on DB2 for i

This commit is contained in:
Christian Beikov 2024-08-07 13:57:34 +02:00
parent 6bf3f15af3
commit 445c587924
1 changed files with 6 additions and 0 deletions

View File

@ -92,6 +92,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.
*/