diff options
author | unknown <bar@mysql.com> | 2004-06-10 19:10:21 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-06-10 19:10:21 +0500 |
commit | d8f0df52d307ba3d1aea9c3d9a125c9439e22e33 (patch) | |
tree | 6b4077bc259e31398c158a35a49ae7ceaac96b12 /strings/ctype-ujis.c | |
parent | 7ece3c749152fd9a5df821398852a4cb02ec13a2 (diff) | |
download | mariadb-git-d8f0df52d307ba3d1aea9c3d9a125c9439e22e33.tar.gz |
Optimization to use less memory.
Diffstat (limited to 'strings/ctype-ujis.c')
-rw-r--r-- | strings/ctype-ujis.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/strings/ctype-ujis.c b/strings/ctype-ujis.c index 668dc7beb8b..f28ea165f80 100644 --- a/strings/ctype-ujis.c +++ b/strings/ctype-ujis.c @@ -8476,8 +8476,8 @@ CHARSET_INFO my_charset_ujis_japanese_ci= NULL, /* tab_to_uni */ NULL, /* tab_from_uni */ NULL, /* sort_order_big*/ - "", - "", + NULL, /* state_map */ + NULL, /* ident_map */ 1, /* strxfrm_multiply */ 1, /* mbminlen */ 3, /* mbmaxlen */ @@ -8503,8 +8503,8 @@ CHARSET_INFO my_charset_ujis_bin= NULL, /* tab_to_uni */ NULL, /* tab_from_uni */ NULL, /* sort_order_big*/ - "", - "", + NULL, /* state_map */ + NULL, /* ident_map */ 1, /* strxfrm_multiply */ 1, /* mbminlen */ 3, /* mbmaxlen */ |