mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Merge branch '10.1' into 10.2
This commit is contained in:
@@ -47,13 +47,10 @@ public:
|
||||
Item_row(THD *thd, List<Item> &list):
|
||||
Item(thd), Item_args(thd, list), not_null_tables_cache(0), with_null(0)
|
||||
{ }
|
||||
Item_row(THD *thd, Item_row *item):
|
||||
Item(thd),
|
||||
Item_args(item),
|
||||
Used_tables_and_const_cache(item),
|
||||
not_null_tables_cache(0),
|
||||
with_null(0)
|
||||
{}
|
||||
Item_row(THD *thd, Item_row *row):
|
||||
Item(thd), Item_args(thd, static_cast<Item_args*>(row)), Used_tables_and_const_cache(),
|
||||
not_null_tables_cache(0), with_null(0)
|
||||
{ }
|
||||
|
||||
enum Type type() const { return ROW_ITEM; };
|
||||
void illegal_method_call(const char *);
|
||||
|
||||
Reference in New Issue
Block a user