JingsongLi commented on code in PR #388: URL: https://github.com/apache/flink-table-store/pull/388#discussion_r1027639409
########## flink-table-store-connector/src/main/java/org/apache/flink/table/store/connector/source/FileStoreSource.java: ########## @@ -130,4 +119,42 @@ public SplitEnumerator<FileStoreSourceSplit, PendingSplitsCheckpoint> restoreEnu return new StaticFileStoreSplitEnumerator(context, snapshot, splits); } } + + private DataFilePlan batchScanSplits(DataTableScan scan) { + return scan.plan(); + } + + private DataFilePlan continuousFirstScanSplits( + DataTableScan scan, SnapshotManager snapshotManager) { + switch (startupMode) { + case FULL: + DataFilePlan plan; + if (table.options().changelogProducer() + == CoreOptions.ChangelogProducer.FULL_COMPACTION) { + // Read the results of the last full compaction. + // Only full compaction results will appear on the max level. + plan = scan.withLevel(table.options().numLevels() - 1).plan(); + } else { + plan = scan.plan(); + } + return plan; + case LATEST: Review Comment: This is from kafka connector. I think `INCREMENTAL` contains `LATEST` `EARLIEST` `FROM-TIMESTAMP`.... -- 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