-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
Support anonymous top level columns, i.e. JSON Array. #1351
Comments
This won't get fixed automatically by the struct work (#638). KSQL still needs some way to know how to map the record value to a column. Some options: |
@rodesai : Could we address this with a new function similar to EXTRACTJSONFIELD for pulling the data out of the JSON array to get it into a STRUCT, for example? |
What about a single ARRAY<STRUCT<>> field? Not sure if it will be useful though... |
Also, add support for top-level primitives, maps and arrays. Fixes confluentinc#1351
* Switch Serde classes to act on STRUCT not GenericRow. Also, add support for top-level primitives, maps and arrays. Fixes #1351
As per:
https://groups.google.com/forum/#!topic/confluent-platform/XMvBUZEdVTg
If the input topic contains a JSON message that is an array, e.g.
We currently don't have a way to access the JSON data.
Hoping this is fixed by #638
The text was updated successfully, but these errors were encountered: