summaryrefslogtreecommitdiff
path: root/sql/sql_error.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_error.cc')
-rw-r--r--sql/sql_error.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/sql_error.cc b/sql/sql_error.cc
index b1c7481bb8c..b4c6aff4f6d 100644
--- a/sql/sql_error.cc
+++ b/sql/sql_error.cc
@@ -769,12 +769,12 @@ void push_warning_printf(THD *thd, Sql_condition::enum_warning_level level,
TRUE Error sending data to client
*/
-const LEX_STRING warning_level_names[]=
+const LEX_CSTRING warning_level_names[]=
{
- { C_STRING_WITH_LEN("Note") },
- { C_STRING_WITH_LEN("Warning") },
- { C_STRING_WITH_LEN("Error") },
- { C_STRING_WITH_LEN("?") }
+ { STRING_WITH_LEN("Note") },
+ { STRING_WITH_LEN("Warning") },
+ { STRING_WITH_LEN("Error") },
+ { STRING_WITH_LEN("?") }
};
bool mysqld_show_warnings(THD *thd, ulong levels_to_show)