Commit 597b070f authored by Aleksey Midenkov's avatar Aleksey Midenkov

Compilation fix

Caused by:
MDEV-18501 Partition pruning doesn't work for historical queries (cleanup)
parent 1bbc593e
...@@ -2648,12 +2648,9 @@ part_column_list_val *partition_info::add_column_value(THD *thd) ...@@ -2648,12 +2648,9 @@ part_column_list_val *partition_info::add_column_value(THD *thd)
return NULL; return NULL;
} }
bool partition_info::set_part_expr(THD *thd, char *start_token, Item *item_ptr, bool partition_info::set_part_expr(THD *thd, Item *item_ptr, bool is_subpart)
char *end_token, bool is_subpart)
{ {
(void)start_token;
(void)item_ptr; (void)item_ptr;
(void)end_token;
(void)is_subpart; (void)is_subpart;
return FALSE; return FALSE;
} }
......
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