Skip to content

Commit f164223

Browse files
committed
HHH-11747 - Fix DB2390Dialect pagination to work for offsets properly when using legacy limit handler behavior.
1 parent b45e2ca commit f164223

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hibernate-core/src/main/java/org/hibernate/dialect/DB2390Dialect.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ public boolean supportsLimit() {
5858
return true;
5959
}
6060

61+
@Override
62+
public boolean supportsLimitOffset() {
63+
return false;
64+
}
65+
6166
@Override
6267
public boolean useMaxForLimit() {
6368
return true;

0 commit comments

Comments
 (0)