diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-18 19:21:30 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-11-26 11:34:15 +0400 |
commit | 13af8650a82f9452d36fe001c42b0b2c794f98d4 (patch) | |
tree | 5eb95393697e5346e541a7018e143b77d6d48146 /sql/partition_info.h | |
parent | 55e67c3e344317c6f349f5391e5d117ec51ae062 (diff) | |
download | mariadb-git-13af8650a82f9452d36fe001c42b0b2c794f98d4.tar.gz |
MDEV-8719 - Obsolete sql_memdup() in favor of THD::memdup() and thd_memdup()
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r-- | sql/partition_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h index df7010b2ab3..c58fa8bef55 100644 --- a/sql/partition_info.h +++ b/sql/partition_info.h @@ -332,7 +332,7 @@ public: void init_col_val(part_column_list_val *col_val, Item *item); int reorganize_into_single_field_col_val(THD *thd); part_column_list_val *add_column_value(THD *thd); - bool set_part_expr(char *start_token, Item *item_ptr, + bool set_part_expr(THD *thd, char *start_token, Item *item_ptr, char *end_token, bool is_subpart); static int compare_column_values(const void *a, const void *b); bool set_up_charset_field_preps(THD *thd); |