I have a database with some tables in parquet format and others in delta format. If I want to append data to the table, I need to specify it if a table is in delta format (default is parquet). How can I determine a table's format?
I tried show tblproperties <tbl_name>
but this gives an empty result.