Hubert-Dudek
Databricks MVP

Are you saving to delta file location?

If you append to location, it will not update the hive metastore table as it only updates underlying files. You can use saveAsTable, or you need to refresh the metastore table using the SQL command:

REFRESH TABLE tableName;


My blog: https://databrickster.medium.com/

View solution in original post