mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Preparing to use my_charset_bin instead of binary_flag
This commit is contained in:
@ -146,10 +146,10 @@ void my_hash_sort_bin(CHARSET_INFO *cs __attribute__((unused)),
|
||||
|
||||
|
||||
|
||||
CHARSET_INFO my_charset_bin =
|
||||
static CHARSET_INFO my_charset_bin_st =
|
||||
{
|
||||
63, /* number */
|
||||
MY_CS_COMPILED, /* state */
|
||||
MY_CS_COMPILED|MY_CS_BINSORT,/* state */
|
||||
"binary", /* name */
|
||||
"", /* comment */
|
||||
NULL, /* ctype */
|
||||
@ -180,3 +180,5 @@ CHARSET_INFO my_charset_bin =
|
||||
255 /* max_sort_char */
|
||||
};
|
||||
|
||||
|
||||
CHARSET_INFO *my_charset_bin = &my_charset_bin_st;
|
||||
|
Reference in New Issue
Block a user