wwj6591812 commented on code in PR #5838: URL: https://github.com/apache/paimon/pull/5838#discussion_r2184120644
########## paimon-flink/paimon-flink-common/src/main/java/org/apache/paimon/flink/source/FlinkSourceBuilder.java: ########## @@ -97,11 +96,9 @@ public class FlinkSourceBuilder { public FlinkSourceBuilder(Table table) { this.table = table; - this.unawareBucket = - table instanceof FileStoreTable - && ((FileStoreTable) table).bucketMode() == BucketMode.BUCKET_UNAWARE; this.sourceName = table.name(); this.conf = Options.fromMap(table.options()); + this.unawareBucket = !this.conf.get(CoreOptions.BUCKET_APPEND_ORDERD); Review Comment: Why remove the original judgment logic? -- 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...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org