You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a bit of a "well don't do that then, what did you expect?!" but I found it as part of my ETL pipeline when a CSV file had all the rows with no entries in the same column (see below).
The immediate solution is to make sure there are no such columns.
I think I have found two problems as Example 1 is the MWE but the output of Example 2 is my actual stack trace and the error is different.
Example 3 shows you can have Union{Missing, Int64} as a column type and it works fine
Example 4 likewise with Union(Missing, String)
but Example 5 shows you have to force CSV to not use InlineStrings but that's just me including it to show why I used that in Example 2
This is a bit of a "well don't do that then, what did you expect?!" but I found it as part of my ETL pipeline when a CSV file had all the rows with no entries in the same column (see below).
The immediate solution is to make sure there are no such columns.
I think I have found two problems as Example 1 is the MWE but the output of Example 2 is my actual stack trace and the error is different.
Example 3 shows you can have Union{Missing, Int64} as a column type and it works fine
Example 4 likewise with Union(Missing, String)
but Example 5 shows you have to force CSV to not use InlineStrings but that's just me including it to show why I used that in Example 2
Example 1
Example 2
Example 3
Example 4
Example 5
The text was updated successfully, but these errors were encountered: