-
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
If you try to rename multiple columns by using wildcard, nothing happens. Also, if you try to rename multiple columns to use the same name, there's no error message shown.
Expected behavior
Renaming columns with wildcard should work. It also shouldn't allow to rename multiple columns with the same name.
How to reproduce
| makeresults
| eval column_one = 1
| eval column_two = 2
| eval column_three = 3
| rename column* AS test*
should look like this:
| _time | test_one | test_two | test_three |
|---|---|---|---|
| 2026-01-08T12:40:47.000+02:00 | 1 | 2 | 3 |
| makeresults
| eval column_one = 1, column_two = 2, column_three = 3
| rename column* AS column
Should return an error.
Screenshots
Software version
pth_10 version: 10.4.0
pth_03 version: 9.3.2
Desktop (please complete the following information if relevant):
- OS:
- Browser:
- Version:
Additional context
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working