-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[ES|QL] Enable subqueries by feature flag #243359
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
[ES|QL] Enable subqueries by feature flag #243359
Conversation
|
Pinging @elastic/kibana-esql (Team:ESQL) |
2759665 to
228bf2d
Compare
| name: 'from', | ||
| methods: fromCommandMethods, | ||
| metadata: { | ||
| subquerySupport: process.env.NODE_ENV === 'test' ? true : false, // Temporary until making it Preview |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw the same thing in SET
|
|
||
| export interface ICommandMetadata { | ||
| preview?: boolean; // Optional property to indicate if the command is in preview mode | ||
| subquerySupport?: boolean; // Optional property to indicate if the command supports subqueries (ONLY FROM) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add that this is temporary and we will remove it when subqueries in from move to Technical preview? I dont want to add this flag in the metadata permanently
💚 Build Succeeded
Metrics [docs]Page load bundle
History
cc @bartoval |
## Summary Adds a feature flag to toggle subquery capabilities in ES|QL
Summary
Adds a feature flag to toggle subquery capabilities in ES|QL