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
The aliasParameter (a=b) in return command has a bug. The first part ("a") is parsed as a fieldType and then the parse fails. The grammar matches it to the required FieldType and then fails, as an equals sign is not allowed after it.
Expected behavior
Should parse.
How to reproduce
Print the parse tree for the following query: | return 2 foo=fuu
Screenshots
Software version
6.1.0
Desktop (please complete the following information if relevant):
OS:
Browser:
Version:
Additional context
returnSyntaxParseTest in ReturnSyntaxTests.java has been disabled because of this issue in PR #52.
The text was updated successfully, but these errors were encountered:
Describe the bug
The aliasParameter (
a=b
) in return command has a bug. The first part ("a") is parsed as a fieldType and then the parse fails. The grammar matches it to the required FieldType and then fails, as an equals sign is not allowed after it.Expected behavior
Should parse.
How to reproduce
Print the parse tree for the following query:
| return 2 foo=fuu
Screenshots
Software version
6.1.0
Desktop (please complete the following information if relevant):
Additional context
returnSyntaxParseTest in ReturnSyntaxTests.java has been disabled because of this issue in PR #52.
The text was updated successfully, but these errors were encountered: