bwliu62 commented on PR #7539:
URL: https://github.com/apache/iceberg/pull/7539#issuecomment-1614239870

   Hello, I want to get upper/lower bounds from the manifest file like:
   
   `
   val icebergTalbe = catalog.loadTable(tableIdentifier)
   val filter = Expressions.greaterThan("id", 10)
   val scan = icebergTable.newScan().filter(filter)
   scan.includeColumnStats().planFiles().forEach { task =>
       val upperBounds = task.file().upperBounds()
       val lowerBounds = task.file().lowerBounds()
       log.info(s"upperBounds: $upperBounds")
       log.info(s"upperBounds: $upperBounds")
   }
   `
   The log will be byteBuffer, I see @szehon-ho  pr for a readable metrics, I 
am wondering do we have a java api we can use, or I have to use DDL? 


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