-
It seems that if a table has a column of all NULL values, the ibis snowflake backend is unable to write this table. Here is a minimal example that shows the issue.
This compiles to:
Gives error:
I am using ibis '9.5.0'. Any suggestions would be appreciated! My tables sometimes have NULL columns. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I think I have solved my own issue. In the example above, it fails because the column is non-nullable. However I also had a column that was of NULL type. By casting it to some datatype, the compilation error goes away:
--> leads to compilation error when writing to disk but
writes successfully. |
Beta Was this translation helpful? Give feedback.
I think I have solved my own issue. In the example above, it fails because the column is non-nullable. However I also had a column that was of NULL type. By casting it to some datatype, the compilation error goes away:
--> leads to compilation error when writing to disk
but
writes successfully.