xabriel commented on a change in pull request #89: Make read-path Evaluators
honor case sensitivity flag. Expose flag in Spark Reader.
URL: https://github.com/apache/incubator-iceberg/pull/89#discussion_r254080566
##########
File path:
api/src/main/java/com/netflix/iceberg/expressions/InclusiveManifestEvaluator.java
##########
@@ -54,7 +54,20 @@ private ManifestEvalVisitor visitor() {
public InclusiveManifestEvaluator(PartitionSpec spec, Expression rowFilter) {
this.struct = spec.partitionType();
- this.expr = Binder.bind(struct,
rewriteNot(Projections.inclusive(spec).project(rowFilter)), true);
+ this.expr = Binder.bind(
+ struct,
+ rewriteNot(Projections.inclusive(spec, true).project(rowFilter)),
+ true
Review comment:
Good catch. Will fix.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]