diff options
author | Monty <monty@mariadb.org> | 2016-04-05 16:52:40 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-04-05 18:00:03 +0300 |
commit | d0b178fb45898486979a504de30ac186f734bb26 (patch) | |
tree | 7a78d5c3ecc02319615042a598a7530099cb217b /sql/sql_locale.h | |
parent | 38f39a9288dc826ac16ac81a67a4e3174451825d (diff) | |
download | mariadb-git-d0b178fb45898486979a504de30ac186f734bb26.tar.gz |
Added new range of MariaDB error messages, starting from 3000
This is done by splitting variables.errmsg and locale.errmsg to
variables.errmsg_extra and locale.errmsg_extra
The ER() macros in unireg.h now looks more complex than before, but this
isn't critical as most usage of them are with constants and the compiler
will remove most of the test code.
Diffstat (limited to 'sql/sql_locale.h')
-rw-r--r-- | sql/sql_locale.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_locale.h b/sql/sql_locale.h index 8357a9ecba4..e231393eec6 100644 --- a/sql/sql_locale.h +++ b/sql/sql_locale.h @@ -19,7 +19,7 @@ typedef struct my_locale_errmsgs { const char *language; - const char **errmsgs; + const char ***errmsgs; } MY_LOCALE_ERRMSGS; #include "my_global.h" /* uint */ |