We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If user defines a context with array root type, then in the resulting LoaderRow we get following structure:
LoaderRow
"contexts_com_acme_mycontext_1_0_0": [ [ { "key": "foo", "value": "bar" }, { "key": "one", "value": "two" } ] ]
First-level array because contexts always have zero-or-more cardinality and second-level array is actual context.
This structure is not supported by BigQuery, which means we have to flatten this array into single-level.
The text was updated successfully, but these errors were encountered:
If we add this flattening - the table's schema won't be changed (if somebody already pushed such schema), so it can wait.
Sorry, something went wrong.
No branches or pull requests
If user defines a context with array root type, then in the resulting
LoaderRow
we get following structure:First-level array because contexts always have zero-or-more cardinality and second-level array is actual context.
This structure is not supported by BigQuery, which means we have to flatten this array into single-level.
The text was updated successfully, but these errors were encountered: