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
Is your feature request related to a problem?
Currently for PPL query, the backtick `` has to be added to surround a reserved keyword in order for query engine to understand. Request to add reserved keyword support.
What solution would you like?
Query contains reserved keys do not need backtick just like any other non-reserved keywords
Do you have any additional context?
Example:
source = sample-data | stats count() by `index` --> index is reserved key and has to be surrounded with backtick to work
// Ideally just
source = sample-data | stats count() by index
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Currently for PPL query, the backtick `` has to be added to surround a reserved keyword in order for query engine to understand. Request to add reserved keyword support.
What solution would you like?
Query contains reserved keys do not need backtick just like any other non-reserved keywords
Do you have any additional context?
Example:
The text was updated successfully, but these errors were encountered: