Commit 3e3b2150 authored by unknown's avatar unknown

BUG#15842: Change in "item.cc" adding Item_sp_variable breaks compile on HP-UX 11.23

Fix: make explicit conversion to non-constant string (char *).
Backported from 5.1 changeset 1.1968 05/12/19 17:36:20 kent@mysql.com +2 -0


sql/item.cc:
  Make explicit conversion to non-constant string (char *).
sql/sql_trigger.cc:
  Make explicit conversion to non-constant string (char *).
parent 17b32e1a
...@@ -949,7 +949,7 @@ void Item_splocal::print(String *str) ...@@ -949,7 +949,7 @@ void Item_splocal::print(String *str)
*****************************************************************************/ *****************************************************************************/
Item_case_expr::Item_case_expr(int case_expr_id) Item_case_expr::Item_case_expr(int case_expr_id)
:Item_sp_variable(STRING_WITH_LEN("case_expr")), :Item_sp_variable((char *) STRING_WITH_LEN("case_expr")),
m_case_expr_id(case_expr_id) m_case_expr_id(case_expr_id)
{ {
} }
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "parse_file.h" #include "parse_file.h"
static const LEX_STRING triggers_file_type= static const LEX_STRING triggers_file_type=
{STRING_WITH_LEN("TRIGGERS")}; {(char *) STRING_WITH_LEN("TRIGGERS")};
const char * const triggers_file_ext= ".TRG"; const char * const triggers_file_ext= ".TRG";
...@@ -34,17 +34,17 @@ const char * const triggers_file_ext= ".TRG"; ...@@ -34,17 +34,17 @@ const char * const triggers_file_ext= ".TRG";
static File_option triggers_file_parameters[]= static File_option triggers_file_parameters[]=
{ {
{ {
{STRING_WITH_LEN("triggers") }, {(char *) STRING_WITH_LEN("triggers") },
offsetof(class Table_triggers_list, definitions_list), offsetof(class Table_triggers_list, definitions_list),
FILE_OPTIONS_STRLIST FILE_OPTIONS_STRLIST
}, },
{ {
{STRING_WITH_LEN("sql_modes") }, {(char *) STRING_WITH_LEN("sql_modes") },
offsetof(class Table_triggers_list, definition_modes_list), offsetof(class Table_triggers_list, definition_modes_list),
FILE_OPTIONS_ULLLIST FILE_OPTIONS_ULLLIST
}, },
{ {
{STRING_WITH_LEN("definers") }, {(char *) STRING_WITH_LEN("definers") },
offsetof(class Table_triggers_list, definers_list), offsetof(class Table_triggers_list, definers_list),
FILE_OPTIONS_STRLIST FILE_OPTIONS_STRLIST
}, },
...@@ -71,7 +71,7 @@ struct st_trigname ...@@ -71,7 +71,7 @@ struct st_trigname
}; };
static const LEX_STRING trigname_file_type= static const LEX_STRING trigname_file_type=
{STRING_WITH_LEN("TRIGGERNAME")}; {(char *) STRING_WITH_LEN("TRIGGERNAME")};
const char * const trigname_file_ext= ".TRN"; const char * const trigname_file_ext= ".TRN";
...@@ -82,7 +82,7 @@ static File_option trigname_file_parameters[]= ...@@ -82,7 +82,7 @@ static File_option trigname_file_parameters[]=
FIXME: Length specified for "trigger_table" key is erroneous, problem FIXME: Length specified for "trigger_table" key is erroneous, problem
caused by this are reported as BUG#14090 and should be fixed ASAP. caused by this are reported as BUG#14090 and should be fixed ASAP.
*/ */
{STRING_WITH_LEN("trigger_table")}, {(char *) STRING_WITH_LEN("trigger_table")},
offsetof(struct st_trigname, trigger_table), offsetof(struct st_trigname, trigger_table),
FILE_OPTIONS_ESTRING FILE_OPTIONS_ESTRING
}, },
...@@ -1236,7 +1236,7 @@ Handle_old_incorrect_sql_modes_hook::process_unknown_string(char *&unknown_key, ...@@ -1236,7 +1236,7 @@ Handle_old_incorrect_sql_modes_hook::process_unknown_string(char *&unknown_key,
(char *)path, "TRIGGER"); (char *)path, "TRIGGER");
File_option sql_modes_parameters= File_option sql_modes_parameters=
{ {
{STRING_WITH_LEN("sql_modes") }, {(char *) STRING_WITH_LEN("sql_modes") },
offsetof(class Table_triggers_list, definition_modes_list), offsetof(class Table_triggers_list, definition_modes_list),
FILE_OPTIONS_ULLLIST FILE_OPTIONS_ULLLIST
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment