Derby dialect supportsResultSetPositionQueryMethodsOnForwardOnlyCursor should return false
This commit is contained in:
parent
0facaf5632
commit
e28d61330e
|
@ -484,6 +484,11 @@ public class DerbyDialect extends Dialect {
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsResultSetPositionQueryMethodsOnForwardOnlyCursor() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsTupleDistinctCounts() {
|
||||
//checked on Derby 10.14
|
||||
|
|
|
@ -151,7 +151,6 @@ public class ScrollableCollectionFetchingTest {
|
|||
}
|
||||
);
|
||||
|
||||
|
||||
scope.inTransaction(
|
||||
session -> {
|
||||
assertNotNull(
|
||||
|
|
Loading…
Reference in New Issue