ibessonov commented on code in PR #1102:
URL: https://github.com/apache/ignite-3/pull/1102#discussion_r974940767
##########
modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/AbstractMvPartitionStorageTest.java:
##########
@@ -165,14 +185,14 @@ public void testAddWrite() {
// Write from the same transaction.
addWrite(rowId, binaryRow, txId);
- // Read without timestamp returns uncommited row.
+ // Read without timestamp returns uncommitted row.
assertRowMatches(read(rowId, txId), binaryRow);
// Read with wrong transaction id should throw exception.
assertThrows(TxIdMismatchException.class, () -> read(rowId,
newTransactionId()));
// Read with timestamp returns null.
Review Comment:
I guess github shows the wrong line, I should have marked it properly. I
meant this one:
```
// Read with timestamp returns null.
assertRowMatches(read(rowId, clock.now()), binaryRow);
```
--
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]