Anh Van
04/21/2024, 6:51 PMfrom kedro_datasets.pandas import DeltaTableDataset
dataset = DeltaTableDataset(catalog_type='UNITY', \
catalog_name='mycatalog', database='mydatabase', table='table1', save_args={'mode': 'overwrite'})
df_data = dataset.load()
I got the following error:
KeyError: 'unity'
Could anyone let me know why does the error happen and how to fix it? Thank you