SHOW ICEBERG TABLES command: New columns in output (Preview)¶
Attention
This behavior change is in the 2025_06 bundle.
For the current status of the bundle, refer to Bundle History.
When this behavior change bundle is enabled, the output of the SHOW ICEBERG TABLES command includes the following new columns:
Column name |
Description |
---|---|
|
List of objects containing the Apache Iceberg™ partition specs for the Iceberg table as they appear in the Iceberg metadata file. It returns the partition specs for both Snowflake-managed and externally managed Iceberg tables. Each partition spec includes a
For example: [ {
"spec-id" : 0,
"fields" : [ {
"name" : "COL1",
"transform" : "identity",
"source-id" : 1,
"field-id" : 1000
}, {
"name" : "COL1_trunc_100",
"transform" : "truncate[100]",
"source-id" : 1,
"field-id" : 1001
},
// Additional fields omitted for brevity.
]
} ]
The example shows one partition spec; however, a table can have multiple partition specs. This column appears after the |
|
ID for the partition spec that is currently active for the Iceberg table. This ID corresponds to a value for spec-id in
partition_specs. For example: This column appears after the |
For more information about partition specs, see Partition Specs in the Apache Iceberg™ specification.
Ref: 2076