We've got this table with liquid clustering turned on at first, but then we switch off with below command.
ALTER TABLE table_name CLUSTER BY NONE;
Now, our downstream process that usually runs "SHOW CREATE TABLE" is hitting a snag. It's throwing this error:
"[DELTA_CLUSTERING_SHOW_CREATE_TABLE_WITHOUT_CLUSTERING_COLUMNS] SHOW CREATE TABLE is not supported for Delta table with Liquid clustering without any clustering columns."
Is there a way to fix this issue? (I do not want to recreate this table again)