We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
| makeresults count=1 | eval 'estimates(a_b)'=1 | rename 'estimates(a_b)' AS e_a_b | stats max(e_a_b)
results into
e_a_b does not exist. Available: _time, 'estimates(a_b)'
Expected behavior field would be renamed and original not present
How to reproduce run query
Screenshots
Software version pth_07 8.2.0
Desktop (please complete the following information if relevant):
Additional context
The text was updated successfully, but these errors were encountered:
please investigate underlying cause, this should throw an exception if the transformation is not supported
Sorry, something went wrong.
Based on testing, seems like
| makeresults count=1 | eval "estimates(a_b)"=1 | rename '"estimates(a_b)"' AS e_a_b
works. I think the issue is caused by eval not stripping the quotes given for the field, but rename does do it, resulting in the error.
eval
rename
eemhu
Abigael-JT
No branches or pull requests
Describe the bug
results into
Expected behavior
field would be renamed and original not present
How to reproduce
run query
Screenshots
Software version
pth_07 8.2.0
Desktop (please complete the following information if relevant):
Additional context
The text was updated successfully, but these errors were encountered: