Table
It is not documented but users can run:
Select * from crdb_internal.partitions
join crdb_internal.tables on partitions.table_id=tables.table_id
where tables.name='mytable'
Database
It is not documented but users can run:
Select partitions.name from crdb_internal.partitions
join crdb_internal.tables on partitions.table_id=tables.table_id
where database_name='mydb
We should make SHOW statements that allow for users to see this information easily.
Table
It is not documented but users can run:
Database
It is not documented but users can run:
We should make SHOW statements that allow for users to see this information easily.