Iceberg Tables
Tables
Example: Get entries and metadata for the latest version of a package
SELECT
e.logical_key,
e.physical_key,
e.size,
e.metadata
FROM package_tag t
JOIN package_entry e
ON t.bucket = e.bucket AND t.top_hash = e.top_hash
WHERE t.bucket = 'my-bucket'
AND t.pkg_name = 'analytics/results'
AND t.tag_name = 'latest'Example: Find latest packages matching specific metadata
See also
Last updated
Was this helpful?

