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
From search tab:
Dropdown next to field foo shows separate values for ‘foo’, ‘bar’ (incorrect)
From structure tab
Change field foo > Edit ENUM/SET values > shows ‘foo,bar’ as single value (correct)
Expected behavior
However the structure tab is splitting the ENUM needs to be applied to the search tab dropdown, rather than just exploding around comma as it currently seems to do.
Screenshots
Server configuration
Database version: 10.2.15-MariaDB
phpMyAdmin version: 4.8.2
The text was updated successfully, but these errors were encountered:
The Insert page is correct; it uses Util::parseEnumSetValues() which correctly parses commas inside a quoted string. The Search page is buggy; it uses templates/table/search/input_box.twig which splits on the comma.
Describe the bug
When a comma is used within the value of an ENUM field the search dropdown incorrectly splits this.
To Reproduce
Steps to reproduce the behavior:
From search tab:
Dropdown next to field
fooshows separate values for ‘foo’, ‘bar’ (incorrect)From structure tab
Change field
foo> Edit ENUM/SET values > shows ‘foo,bar’ as single value (correct)Expected behavior
However the structure tab is splitting the ENUM needs to be applied to the search tab dropdown, rather than just exploding around comma as it currently seems to do.
Screenshots
Server configuration
The text was updated successfully, but these errors were encountered: