SteNicholas commented on code in PR #812: URL: https://github.com/apache/incubator-paimon/pull/812#discussion_r1161658878
########## paimon-core/src/main/java/org/apache/paimon/CoreOptions.java: ########## @@ -568,6 +568,27 @@ public class CoreOptions implements Serializable { "Only used to force TableScan to construct 'ContinuousCompactorStartingScanner' and " + "'ContinuousCompactorFollowUpScanner' for dedicated streaming compaction job."); + public static final ConfigOption<StreamingReadMode> STREAMING_READ_MODE = + key("streaming-read-mode") + .enumType(StreamingReadMode.class) + .noDefaultValue() + .withDescription( + Description.builder() + .text("Read the store type of the paimon table.") Review Comment: ```suggestion .text("The mode of streaming read that specifies to read the data of table File or Log") ``` -- 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