diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2019-09-01 17:56:47 +0300 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2019-09-01 18:00:04 +0300 |
commit | 597b070f8254439aa5f555c6868f3d9b8d518238 (patch) | |
tree | 0f75c206527cfe36fee6c893fa45acc5df75beb9 /sql/partition_info.cc | |
parent | 1bbc593eaeeb2675ad3126e9753a5e945150b7ee (diff) | |
download | mariadb-git-597b070f8254439aa5f555c6868f3d9b8d518238.tar.gz |
Compilation fix
Caused by:
MDEV-18501 Partition pruning doesn't work for historical queries (cleanup)
Diffstat (limited to 'sql/partition_info.cc')
-rw-r--r-- | sql/partition_info.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sql/partition_info.cc b/sql/partition_info.cc index f9669931eab..66ec6a70b12 100644 --- a/sql/partition_info.cc +++ b/sql/partition_info.cc @@ -2648,12 +2648,9 @@ part_column_list_val *partition_info::add_column_value(THD *thd) return NULL; } -bool partition_info::set_part_expr(THD *thd, char *start_token, Item *item_ptr, - char *end_token, bool is_subpart) +bool partition_info::set_part_expr(THD *thd, Item *item_ptr, bool is_subpart) { - (void)start_token; (void)item_ptr; - (void)end_token; (void)is_subpart; return FALSE; } |