cun8cun8 commented on code in PR #20742: URL: https://github.com/apache/flink/pull/20742#discussion_r962093570
########## flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/runtime/utils/StreamingWithStateTestBase.scala: ########## @@ -62,17 +62,17 @@ class StreamingWithStateTestBase(state: StateBackendMode) extends StreamingTestB super.before() // set state backend baseCheckpointPath = tempFolder.newFolder().getAbsoluteFile - state match { - case HEAP_BACKEND => - val conf = new Configuration() - env.setStateBackend( - new MemoryStateBackend("file://" + baseCheckpointPath, null).configure(conf, classLoader)) - case ROCKSDB_BACKEND => - val conf = new Configuration() - conf.setBoolean(CheckpointingOptions.INCREMENTAL_CHECKPOINTS, true) - env.setStateBackend( - new RocksDBStateBackend("file://" + baseCheckpointPath).configure(conf, classLoader)) - } +// state match { +// case HEAP_BACKEND => +// val conf = new Configuration() +// env.setStateBackend( +// new MemoryStateBackend("file://" + baseCheckpointPath, null).configure(conf, classLoader)) +// case ROCKSDB_BACKEND => +// val conf = new Configuration() +// conf.setBoolean(CheckpointingOptions.INCREMENTAL_CHECKPOINTS, true) +// env.setStateBackend( +// new RocksDBStateBackend("file://" + baseCheckpointPath).configure(conf, classLoader)) +// } Review Comment: Sorry, this is a mistake. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org