1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

A cleanup for MDEV-30695 Refactor case folding data types in Asian collations

Adding "const" qualifiers to casefold_info_st::page
This commit is contained in:
Alexander Barkov
2023-03-03 04:10:58 +04:00
parent f14d9fa09a
commit 0bf400a19a
10 changed files with 65 additions and 65 deletions

View File

@@ -96,7 +96,7 @@ typedef struct casefold_info_char_t
struct casefold_info_st
{
my_wc_t maxchar;
MY_CASEFOLD_CHARACTER **page;
const MY_CASEFOLD_CHARACTER * const *page;
};