-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
There's an error if the other form for like() is used with where command.
Expected behavior
It should work the same.
How to reproduce
| makeresults count=6
| eval row=1 | accum row
| eval sid=case(row=1, "ses-1", row=2, "ses-2", row=3, "ses-3", row=4, "ses-4", row=5, "ses-5", row=6, "ses-6")
| eval uid=case(row=1, "user-1", row=2, "user-2", row=3, "user-3", row=4, "user-4", row=5, "user-5", row=6, "user-6")
| where uid LIKE "user-%"
Compare with this:
| makeresults count=6
| eval row=1 | accum row
| eval sid=case(row=1, "ses-1", row=2, "ses-2", row=3, "ses-3", row=4, "ses-4", row=5, "ses-5", row=6, "ses-6")
| eval uid=case(row=1, "user-1", row=2, "user-2", row=3, "user-3", row=4, "user-4", row=5, "user-5", row=6, "user-6")
| where like(uid, "user-%")
Screenshots
Software version
pth_10 version: 10.4.0
Desktop (please complete the following information if relevant):
- OS:
- Browser:
- Version:
Additional context
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working