rpuch commented on code in PR #6229: URL: https://github.com/apache/ignite-3/pull/6229#discussion_r2197655210
########## modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/engine/AbstractPersistentStorageEngineTest.java: ########## @@ -70,6 +70,9 @@ * because it doesn't limit the usage of the engine with a single table. */ public abstract class AbstractPersistentStorageEngineTest extends AbstractStorageEngineTest { + /** Makes sure that table destruction is persisted durably. */ + protected abstract void persistTableDestructionIfNeeded(); Review Comment: Yes, it's because for RocksDB we need to additionally call flush (which I did not put on the `StorageEngine` interface as it's only needed for tests). Making them identical would probably mean having the method on the interface which is weird (as it's only for tests). Are you thinking about a different solution? -- 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