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
Add a way to compute a reliable schema for the table.
Put it into the table struct ? It could be used to check the columns types, or to make unions of types in the schema.
The issue right now is that we can have two rows with a different type for a value (e.g. A = nothing and A = 1.0), but the column will be whatever the type of the value in the first row. This is very bad!
The text was updated successfully, but these errors were encountered:
Add a way to compute a reliable schema for the table.
Put it into the table struct ? It could be used to check the columns types, or to make unions of types in the schema.
The issue right now is that we can have two rows with a different type for a value (e.g. A = nothing and A = 1.0), but the column will be whatever the type of the value in the first row. This is very bad!
The text was updated successfully, but these errors were encountered: