Closed jausanca closed 2 months ago
I'm also getting the message module 'dbt.exceptions' has no attribute 'DbtDatabaseError'
which seems right after looking at this commit on dbt-core. But I'm not sure if this is an issue related to my dbt version.
Describe the bug
dbt is failing when loading seeds with null values (empty values on the csv).
Steps To Reproduce
Execute dbt seed with csv seeds that contain rows with empty values
Screenshots and log output
Fragment from the error output:
System information
The output of
dbt --version
:The output of
python --version
:Additional context
From a quick look i'd say it's related to how the table is serialized as a json and then passed as a dict when inserted into the code to execute on the session. Hence null values would be serialized as null instead of None.