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 "my-bucket_package_tag" t
JOIN "my-bucket_package_entry" e
ON t.top_hash = e.top_hash
WHERE t.pkg_name = 'analytics/results'
AND t.tag_name = 'latest'Example: Find latest packages matching specific metadata
Cross-bucket queries
See also
Last updated
Was this helpful?

