diff options
author | Igor Babaev <igor@askmonty.org> | 2016-08-31 16:16:54 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2016-08-31 16:16:54 -0700 |
commit | 3fb4f9bb93868ce5c7e385d0545c00755d8e23bd (patch) | |
tree | 8ea1c005920b2ef9d7c7f1114c5433c728751b72 /sql/item_row.h | |
parent | 670760d504bebdf542df890f4d40f4cd3ff7a2c8 (diff) | |
parent | eb2c1474752a5f743db638d5b06612c9e3f07f74 (diff) | |
download | mariadb-git-3fb4f9bb93868ce5c7e385d0545c00755d8e23bd.tar.gz |
Merge branch '10.2-mdev9197-cons' of github.com:shagalla/server
into branch 10.2-mdev9197.
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index eb2686090e1..bbfebb56010 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -120,6 +120,9 @@ public: bool null_inside() { return with_null; }; void bring_value(); bool check_vcol_func_processor(void *arg) {return FALSE; } + Item *get_copy(THD *thd, MEM_ROOT *mem_root) + { return get_item_copy<Item_row>(thd, mem_root, this); } + Item *build_clone(THD *thd, MEM_ROOT *mem_root); }; #endif /* ITEM_ROW_INCLUDED */ |