Description
Currently, the SupportsPartitionManagement interface exposes only the listPartitionIdentifiers() method which does not allow to list partition by names. So, it is hard to implement:
SHOW PARTITIONS table PARTITION(month=2)
from the table like:
CREATE TABLE $table (price int, qty int, year int, month int) USING parquet partitioned by (year, month)
because listPartitionIdentifiers() requires to specify value for year .