pushcoder commented on issue #1354:
URL: https://github.com/apache/iceberg-rust/issues/1354#issuecomment-3271086539

   @Nathan-Fenner But if you actually see Manifest file Entry evaluation in 
java. it matches with whats here
   
https://github.com/apache/iceberg/blob/a7f3dc79a2f42a4875ac35eec2137ecff15204fc/api/src/main/java/org/apache/iceberg/expressions/ManifestEvaluator.java#L173C1-L181C68
   
   ```
       @Override
       public <T> Boolean lt(BoundReference<T> ref, Literal<T> lit) {
         int pos = Accessors.toPosition(ref.accessor());
         ByteBuffer lowerBound = stats.get(pos).lowerBound();
         if (lowerBound == null) {
           return ROWS_CANNOT_MATCH; // values are all null
         }
   
   
         T lower = Conversions.fromByteBuffer(ref.type(), lowerBound);
   ```


-- 
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]

Reply via email to