Skip to content

Commit

Permalink
HHH-16020 - Fix for error that surfaced in the LegacyOracleLimitHandl…
Browse files Browse the repository at this point in the history
…er due to the fix for HHH-16020

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
  • Loading branch information
jrenaat authored and beikov committed Jan 27, 2023
1 parent 640161f commit cbf6334
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ public boolean supportsLimit() {
return true;
}

@Override
public boolean supportsOffset() {
return true;
}

@Override
public boolean forceLimitUsage() {
return true;
}

@Override
public boolean bindLimitParametersInReverseOrder() {
return true;
Expand Down

0 comments on commit cbf6334

Please sign in to comment.