generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 179
Closed
Labels
Description
Is your feature request related to a problem?
The nested query is supported in the legacy engine and not the V2 engine. As Legacy engine is becoming deprecated we need to support this functionality in the V2 engine.
Example:
SELECT nested(message.info) FROM nested_objects;
SELECT * FROM nested_objects WHERE nested(message.info)='b';
SELECT nested(message.info) FROM nested_objects ORDER BY nested(message.info);
SELECT nested(message.*) FROM nested_objects;
What solution would you like?
Port over functionality for the nested query to the V2 engine with the same functionality as in Legacy.
Release-Schedule
- P[0]
SELECTclause support - P[0]
WHEREclause support; one syntax will be prioritized.- P[0]
Syntax:- Released: 1657nested(field | field, path) OPERATOR LITERAL
- P[0]
- P[0]
- Released: 1789ORDER BYclause support
What alternatives have you considered?
N/A
Do you have any additional context?
N/A