mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 03:38:16 +00:00
HHH-5168 DB2Dialect generates CROSS JOINs which aren't supported
This commit is contained in:
parent
1f012f8b36
commit
98f41bd6a8
@ -418,6 +418,10 @@ public boolean supportsResultSetPositionQueryMethodsOnForwardOnlyCursor() {
|
||||
return false;
|
||||
}
|
||||
|
||||
//DB2 v9.1 doesn't support 'cross join' syntax
|
||||
public String getCrossJoinSeparator() {
|
||||
return ", ";
|
||||
}
|
||||
// Overridden informational metadata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
public boolean supportsEmptyInList() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user