JingsongLi commented on code in PR #493:
URL: https://github.com/apache/flink-table-store/pull/493#discussion_r1094406052
##########
flink-table-store-core/src/main/java/org/apache/flink/table/store/table/source/DataTableScan.java:
##########
@@ -38,7 +38,16 @@ public interface DataTableScan extends TableScan {
@Override
DataTableScan withFilter(Predicate predicate);
- DataTableScan.DataFilePlan plan();
+ default DataTableScan.DataFilePlan plan() {
+ return plan(false);
+ }
+
+ /** @param isOverwrite whether to extract plan from an overwrite snapshot
*/
+ DataTableScan.DataFilePlan plan(boolean isOverwrite);
+
+ default boolean supportStreamingReadOverwrite() {
+ return false;
Review Comment:
Add comment here: why not support now.
--
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]