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
It doesn't check rules like, "thou mustn't include an indexed or option-type array directly within another indexed or option-type array" and the complex rules surrounding union composition. (UnionArrays cannot be directly within an indexed or option-type array, and if it's a union of option-type data, the first element of contents must be option-type while all the rest must be UnmaskedArrays.)
I should review all of the rules and encode them into the is_valid function in Julia, so that anything that passes is_valid can be sent to Python without error.
The text was updated successfully, but these errors were encountered:
It doesn't check rules like, "thou mustn't include an indexed or option-type array directly within another indexed or option-type array" and the complex rules surrounding union composition. (
UnionArrays
cannot be directly within an indexed or option-type array, and if it's a union of option-type data, the first element ofcontents
must be option-type while all the rest must beUnmaskedArrays
.)I should review all of the rules and encode them into the
is_valid
function in Julia, so that anything that passesis_valid
can be sent to Python without error.The text was updated successfully, but these errors were encountered: