get_table_partitions
Retrieve and display partitions for a specified Iceberg table using namespace and table name inputs to analyze data organization and structure.
Instructions
Provides the partitions for a given Iceberg table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
namespace | Yes | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"namespace": {
"title": "Namespace",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"namespace",
"table_name"
],
"title": "get_table_partitionsArguments",
"type": "object"
}