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
Currently various constructs containing nested Field validate that the nullability of their children matches that of the schema. This helps to avoid subtle bugs that could result in data loss / corruption, see #4602 for more context on this.
Currently this is achieved by inspecting the null count of the child array, however, for dictionaries this is potentially incorrect as the null count of the parent only reflects the null count of the keys, and not the logical null count.
To Reproduce
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
Currently various constructs containing nested
Field
validate that the nullability of their children matches that of the schema. This helps to avoid subtle bugs that could result in data loss / corruption, see #4602 for more context on this.Currently this is achieved by inspecting the null count of the child array, however, for dictionaries this is potentially incorrect as the null count of the parent only reflects the null count of the keys, and not the logical null count.
To Reproduce
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: