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
ENUM values are sorted based on their index numbers, which
depend on the order in which the enumeration members were listed in the
column specification. For example, 'b' sorts before 'a' for ENUM('b', 'a').
Steps To Reproduce
Create an enum but don't have the options in alphabetical order in the database
Try and sort on the column and notice it is sorted by the enum index order rather than alphabetically
Expected behaviour
Sort alphabetically
Possible fixes
Needs some consideration on how to fix this, probably need to do some different sorting when the filter type is enum
The text was updated successfully, but these errors were encountered:
What is the issue?
Steps To Reproduce
Expected behaviour
Sort alphabetically
Possible fixes
Needs some consideration on how to fix this, probably need to do some different sorting when the filter type is enum
The text was updated successfully, but these errors were encountered: