diff options
author | bar@bar.intranet.mysql.r18.ru <> | 2004-05-25 17:40:20 +0500 |
---|---|---|
committer | bar@bar.intranet.mysql.r18.ru <> | 2004-05-25 17:40:20 +0500 |
commit | 391d5629f6cf12ac4dd61e3d8f6cc435ae7b12db (patch) | |
tree | a9a4fa11270cbdaa126493450d0bb6e8552335ed /include | |
parent | d0c761e66b3a621d7f3b86b24c539d98cbc452b6 (diff) | |
download | mariadb-git-391d5629f6cf12ac4dd61e3d8f6cc435ae7b12db.tar.gz |
Preparation for user-defined Unicode collations:
weights data now comes from a static variables
but from the charset structure.
Diffstat (limited to 'include')
-rw-r--r-- | include/m_ctype.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_ctype.h b/include/m_ctype.h index 9e69a3c8f91..9502805b017 100644 --- a/include/m_ctype.h +++ b/include/m_ctype.h @@ -188,7 +188,7 @@ typedef struct my_charset_handler_st } MY_CHARSET_HANDLER; extern MY_CHARSET_HANDLER my_charset_8bit_handler; - +extern MY_CHARSET_HANDLER my_charset_ucs2_handler; typedef struct charset_info_st @@ -204,6 +204,7 @@ typedef struct charset_info_st uchar *to_lower; uchar *to_upper; uchar *sort_order; + uint16 **sort_order_big; uint16 *tab_to_uni; MY_UNI_IDX *tab_from_uni; uchar state_map[256]; |