I'm trying to convert my Databricks Tables from Parquet to Delta. While most of the tables have data and are successfully converted to delta some of the empty parquet tables fail with an error message as below -
CONVERT TO DELTA <schema-name>.parquet_test_3
AnalysisException: Found no partition information in the catalog for table spark_catalog.<schema-name>.parquet_test_3. Have you run "MSCK REPAIR TABLE" on your table to discover partitions?
Has anyone tried converting empty parquet tables to delta format?
Note: MSCK REPAIR TABLE does not have any effect.
Inserting a dummy row into the table solves this issue but looking for any other best workarounds/solution.