diff options
author | Roman Nozdrin <drrtuy@gmail.com> | 2018-07-10 21:51:51 +0300 |
---|---|---|
committer | Roman Nozdrin <roman.nozdrin@mariadb.com> | 2018-07-10 21:51:51 +0300 |
commit | 4f74adaca9a62999595d55000c2e692689808ecc (patch) | |
tree | 5748127497518e42145baad202c095ba202b7b0b /sql/item_cmpfunc.h | |
parent | bb045e7931c451b228ffc5bcdb1791a31eb0c852 (diff) | |
download | mariadb-git-10.2-w-columnstore.tar.gz |
MCOL-1532 Added accessors columnstore uses.10.2-w-columnstore
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 78a9e384b55..b1c2cae6608 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -1593,6 +1593,7 @@ public: } return clone; } + int get_first_expr_num() { return first_expr_num; } }; /* @@ -1997,6 +1998,7 @@ public: Item *get_copy(THD *thd, MEM_ROOT *mem_root) { return get_item_copy<Item_func_like>(thd, mem_root, this); } + bool is_negated() { return negated; } }; |