mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
charset<->unicode conversion tables and routines
some warnings fixes include/m_ctype.h: New charset conversion fields in CHARSET_INFO mysys/hash.c: Fix for "unused argument" warning strings/ctype-big5.c: Fix for "unused argument" warning strings/ctype-czech.c: Fix for "unused argument" warning strings/ctype-euc_kr.c: Fix for "unused argument" warning strings/ctype-gb2312.c: Fix for "unused argument" warning strings/ctype-gbk.c: Fix for "unused argument" warning strings/ctype-latin1_de.c: Fix for "unused argument" warning strings/ctype-simple.c: 8bit<->unicode convertion routines strings/ctype-sjis.c: Fix for "unused argument" warning strings/ctype-tis620.c: Fix for "unused argument" warning strings/ctype-ujis.c: Fix for "unused argument" warning strings/ctype-utf8.c: Fix for "unused argument" warning strings/ctype.c: 8bit <-> unicode conversion tables
This commit is contained in:
parent
48f993484a
commit
4fd893e5d3
14 changed files with 1371 additions and 342 deletions
|
|
@ -282,7 +282,7 @@ int my_strxfrm_czech(uchar * dest, const uchar * src, int len)
|
|||
|
||||
/* Function strnncoll, actually strcoll, with Czech sorting, which expect
|
||||
the length of the strings being specified */
|
||||
int my_strnncoll_czech(CHARSET_INFO *cs,
|
||||
int my_strnncoll_czech(CHARSET_INFO *cs __attribute__((unused)),
|
||||
const uchar * s1, uint len1,
|
||||
const uchar * s2, uint len2)
|
||||
{
|
||||
|
|
@ -308,7 +308,7 @@ int my_strnncoll_czech(CHARSET_INFO *cs,
|
|||
|
||||
/* Function strnxfrm, actually strxfrm, with Czech sorting, which expect
|
||||
the length of the strings being specified */
|
||||
int my_strnxfrm_czech(CHARSET_INFO *cs,
|
||||
int my_strnxfrm_czech(CHARSET_INFO *cs __attribute__((unused)),
|
||||
uchar * dest, uint len,
|
||||
const uchar * src, uint srclen)
|
||||
{
|
||||
|
|
@ -378,7 +378,7 @@ int my_strnxfrm_czech(CHARSET_INFO *cs,
|
|||
|
||||
#define EXAMPLE
|
||||
|
||||
my_bool my_like_range_czech(CHARSET_INFO *cs,
|
||||
my_bool my_like_range_czech(CHARSET_INFO *cs __attribute__((unused)),
|
||||
const char *ptr,uint ptr_length,pchar escape,
|
||||
uint res_length, char *min_str,char *max_str,
|
||||
uint *min_length,uint *max_length)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue