geruh opened a new pull request, #602:
URL: https://github.com/apache/iceberg-python/pull/602

   This PR adds the Refs metadata table the existing inspect logic for Iceberg 
tables as listed in #511. The refs metadata table in Iceberg stores the table's 
known snapshot references including branches, and tags.  
   
   ### Usage
   
   ```
   > table.inspect.refs()
   ```
   
   ```
   pyarrow.Table
   name: string not null
   type: string not null
   snapshot_id: int64 not null
   max_reference_age_in_ms: int64
   min_snapshots_to_keep: int32
   max_snapshot_age_in_ms: int64
   ----
   name: [["testBranch","main","testTag"]]
   type: [["BRANCH","BRANCH","TAG"]]
   snapshot_id: [[4549716733136159472,4549716733136159472,4549716733136159472]]
   max_reference_age_in_ms: [[604800000,null,15552000000]]
   min_snapshots_to_keep: [[2,null,null]]
   max_snapshot_age_in_ms: [[null,null,null]]
   ```


-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to