mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
subqueries made printable
new EXPLAIN parameter to show real query as it was interpreted (SCRUM) (WL#1274)
This commit is contained in:
@ -160,10 +160,14 @@ class Item_func_not_all :public Item_func_not
|
||||
{
|
||||
bool abort_on_null;
|
||||
public:
|
||||
Item_func_not_all(Item *a) :Item_func_not(a), abort_on_null(0) {}
|
||||
bool show;
|
||||
|
||||
Item_func_not_all(Item *a) :Item_func_not(a), abort_on_null(0), show(0) {}
|
||||
virtual void top_level_item() { abort_on_null= 1; }
|
||||
bool top_level() { return abort_on_null; }
|
||||
longlong val_int();
|
||||
const char *func_name() const { return "<not>"; }
|
||||
void print(String *str);
|
||||
};
|
||||
|
||||
class Item_func_eq :public Item_bool_rowready_func2
|
||||
|
Reference in New Issue
Block a user