How do I modify the default collation configuration and have it take effect? #40873
Unanswered
dongluo-smile
asked this question in
Q&A
Replies: 1 comment 1 reply
-
建议英文提问,如使用中文提问,可以去ask.selectdb.com中文技术论坛。 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Through the SHOW CHARACTER SET; Command view display
SHOW COLLATION; Command view display
Problem: utf8mb4_0900_bin Collation rules cause case sensitivity when querying data, such as('ABC' != 'abc')
Expect: Change the default collation to utf8mb4_general_ci, query data is case insensitive, for example('ABC' == 'abc')
Modify the fe.conf and be.conf configuration files to add default_character_set = utf8mb4
default_collation = utf8mb4_general_ci And restart, found no effect.
May I ask you, how to configure it to make it effective?
Beta Was this translation helpful? Give feedback.
All reactions