diff options
author | unknown <kent@mysql.com> | 2005-12-19 17:36:20 +0100 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-12-19 17:36:20 +0100 |
commit | 5f4100926d9fe2e819cd90995a1f7e19a3ae7bea (patch) | |
tree | 1c6c7d5bd106032518e98b8b962e8885471d645a /sql/item.cc | |
parent | a62aaaef7a3c151409b652d71b46809c25011801 (diff) | |
download | mariadb-git-5f4100926d9fe2e819cd90995a1f7e19a3ae7bea.tar.gz |
sql_trigger.cc, item.cc:
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 *)
(change by anozdrin@mysql.com)
sql/item.cc:
Make explicit conversion to non-constant string (char *)
sql/sql_trigger.cc:
Make explicit conversion to non-constant string (char *)
Diffstat (limited to 'sql/item.cc')
-rw-r--r-- | sql/item.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.cc b/sql/item.cc index 77e5c25c4f8..bf5718bb54d 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -949,7 +949,7 @@ void Item_splocal::print(String *str) *****************************************************************************/ 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) { } |