rpuch commented on code in PR #5223: URL: https://github.com/apache/ignite-3/pull/5223#discussion_r1954363857
########## modules/table/src/test/java/org/apache/ignite/internal/table/distributed/replication/PartitionReplicaListenerTest.java: ########## @@ -1414,6 +1415,19 @@ public void testWriteIntentOnPrimaryReplicaMultiRowOps() { cleanup(txId); } + @Test + public void testCleanupOnCompactedCatalogVersion() { + UUID txId = newTxId(); + + BinaryRow testRow = binaryRow(0); + + assertThat(doSingleRowRequest(txId, testRow, RW_INSERT), willCompleteSuccessfully()); + + when(catalogService.activeCatalog(anyLong())).thenThrow(new CatalogNotFoundException("Catalog not found")); + + cleanup(txId); Review Comment: On a second thought: 1. Let's parameterize the test to make sure that both commit and abort work 2. After we did the cleanup, let's verify that commitWrite()/abortWrite() is called -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org