Gabriel39 commented on code in PR #67687:
URL: https://github.com/apache/doris/pull/67687#discussion_r3980105768
##########
fe/fe-connector/fe-connector-iceberg/src/main/java/org/apache/doris/connector/iceberg/IcebergScanPlanProvider.java:
##########
@@ -493,7 +493,8 @@ public long streamingSplitEstimate(ConnectorSession
session, ConnectorTableHandl
long threshold = sessionLong(session, NUM_FILES_IN_BATCH_MODE,
DEFAULT_NUM_FILES_IN_BATCH_MODE);
long fileCount = 0;
try (CloseableIterable<ManifestFile> matching = getMatchingManifest(
- snapshot.dataManifests(table.io()), table.specs(),
scan.filter())) {
+ snapshot.dataManifests(table.io()),
Review Comment:
Fixed in dab9c2ef7a using the fail-fast option. The server-planning guard
runs during raw table resolution, before buildScan, the streaming estimator,
manifest cache paths, or table.io() access. Added a streaming-estimator test
that denies and detects all local scan/manifest access.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]