QuakeWang commented on code in PR #549:
URL: https://github.com/apache/paimon-rust/pull/549#discussion_r3612301143
##########
crates/paimon/src/table/data_evolution_reader.rs:
##########
@@ -448,6 +470,9 @@ impl DataEvolutionReader {
resolve_blob_views: bool,
descriptor_fields: &HashSet<String>,
) -> bool {
+ if !self.apply_row_filter {
Review Comment:
`apply_row_filter` defaults to `false` in DataFusion. This skips filtering
before BLOB resolution, so rows excluded by `WHERE` may still resolve their
descriptors. A corrupted or inaccessible descriptor can therefore fail the
query before the parent `FilterExec` runs. The current test avoids the default
path by explicitly enabling `paimon.read.row_filter`, leaving this blocking
behavioral regression uncovered.
--
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]