Skip to content

Commit 0ceca78

Browse files
committed
Use scrollable resulsets only when offset > 0
1 parent bf8c4d6 commit 0ceca78

File tree

1 file changed

+1
-1
lines changed
  • plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model

1 file changed

+1
-1
lines changed

plugins/org.jkiss.dbeaver.model/src/org/jkiss/dbeaver/model/DBUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,7 @@ public static DBCStatement makeStatement(
12991299
}
13001300
}
13011301

1302-
boolean doScrollable = hasLimits;
1302+
boolean doScrollable = (offset > 0);
13031303
String queryText;
13041304
try {
13051305
if (hasLimits && limitTransformer != null) {

0 commit comments

Comments
 (0)