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
If a JSON document contains keys that are reserved words in SPL, there is currently no way to map those key/value pairs into an SPL attribute.
For example, suppose I have the following JSON:
{"type" : "a", "class" : "b"}
Since "type" and "class" are reserved words in SPL, you cannot have a schema that contains attributes with those names (i.e. tuple<rstring type, rstring class> is not valid).
The operators need to either handle the mapping of reserved key names (i.e. automatically map key "type" to something such as SPL attribute "type_") or allow the user to provide a custom mapping.
The text was updated successfully, but these errors were encountered:
markheger
pushed a commit
to markheger/streamsx.json
that referenced
this issue
Aug 25, 2017
If a JSON document contains keys that are reserved words in SPL, there is currently no way to map those key/value pairs into an SPL attribute.
For example, suppose I have the following JSON:
Since "type" and "class" are reserved words in SPL, you cannot have a schema that contains attributes with those names (i.e. tuple<rstring type, rstring class> is not valid).
The operators need to either handle the mapping of reserved key names (i.e. automatically map key "type" to something such as SPL attribute "type_") or allow the user to provide a custom mapping.
The text was updated successfully, but these errors were encountered: