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
Notice that the input schema in the example above is "data": STRUCT<"a": INT64, "b": INT64>. On the other hand, the data field in the input JSON is an array instead. We can observe that the data column after parsing (which is a lists column) is just gathered for generating the output. The desired output here should be all nulls instead, and the correct behavior here should be to make sure the output columns have the right types/structures that we are looking for as specified in the input schema.
The text was updated successfully, but these errors were encountered:
Look at this example:
Output:
Notice that the input schema in the example above is
"data": STRUCT<"a": INT64, "b": INT64>
. On the other hand, thedata
field in the input JSON is an array instead. We can observe that thedata
column after parsing (which is a lists column) is just gathered for generating the output. The desired output here should be all nulls instead, and the correct behavior here should be to make sure the output columns have the right types/structures that we are looking for as specified in the input schema.The text was updated successfully, but these errors were encountered: