JingsongLi commented on a change in pull request #56:
URL: https://github.com/apache/flink-table-store/pull/56#discussion_r834087806



##########
File path: 
flink-table-store-core/src/test/java/org/apache/flink/table/store/file/TestFileStore.java
##########
@@ -314,6 +315,12 @@ public void assertCleaned() {
         } catch (IOException e) {
             throw new RuntimeException(e);
         }
+
+        // remove best effort latest and earliest hint files
+        Path snapshotDir = pathFactory().snapshotDirectory();
+        actualFiles.remove(new Path(snapshotDir, SnapshotFinder.LATEST));
+        actualFiles.remove(new Path(snapshotDir, SnapshotFinder.EARLIEST));

Review comment:
       It looks like we need a precise value from `findLatest` and 
`findEarliest`.
   We can do 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]


Reply via email to