Commit 466335a4 authored by Alexander Barkov's avatar Alexander Barkov

MDEV-16707 Add an accessor in Item_func_like class for the negated attribute

parent f89a27b4
......@@ -2642,6 +2642,9 @@ class Item_func_like :public Item_bool_func2
Item_bool_func2(thd, a, b), canDoTurboBM(FALSE), pattern(0), pattern_len(0),
bmGs(0), bmBc(0), escape_item(escape_arg),
escape_used_in_parsing(escape_used), use_sampling(0), negated(0) {}
bool get_negated() const { return negated; } // Used by ColumnStore
longlong val_int();
enum Functype functype() const { return LIKE_FUNC; }
void print(String *str, enum_query_type query_type);
......
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