tkalkirill commented on code in PR #1325:
URL: https://github.com/apache/ignite-3/pull/1325#discussion_r1030564006
##########
modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/impl/TestMvPartitionStorage.java:
##########
@@ -398,23 +421,35 @@ public ReadResult next() {
@Override
public @Nullable RowId closestRowId(RowId lowerBound) throws
StorageException {
+ checkClosed();
+
return map.ceilingKey(lowerBound);
}
- /** {@inheritDoc} */
@Override
public long rowsCount() {
+ checkClosed();
+
return map.size();
}
- /** {@inheritDoc} */
@Override
public void close() {
- // No-op.
+ started = false;
Review Comment:
Change it
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]