diff options
author | Andrey Hristov <andrey@php.net> | 2008-03-25 18:27:17 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2008-03-25 18:27:17 +0000 |
commit | 5abe8c8d012191de937653b2817f7447529bbf0a (patch) | |
tree | 6141e3119f7d0fd05f3c0ab27a700444e7e06031 /ext/mysqlnd/mysqlnd_structs.h | |
parent | 9e2894f5ffb03e16590c4f55981de54ba67f3374 (diff) | |
download | php-git-5abe8c8d012191de937653b2817f7447529bbf0a.tar.gz |
Small updates & a fix for
Bug #43832 mysqi_get_charset() doesn't expose charset comment
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index 5da7bd2bb9..334eef8061 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -124,13 +124,14 @@ typedef struct st_mysqlnd_infile_info /* character set information */ typedef struct st_mysqlnd_charset { - uint nr; - char *name; - char *collation; - uint char_minlen; - uint char_maxlen; - uint (*mb_charlen)(uint c); - uint (*mb_valid)(const char *start, const char *end); + uint nr; + const char *name; + const char *collation; + uint char_minlen; + uint char_maxlen; + const char *comment; + uint (*mb_charlen)(uint c); + uint (*mb_valid)(const char *start, const char *end); } MYSQLND_CHARSET; |