diff options
author | bell@sanja.is.com.ua <> | 2002-09-03 09:50:36 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-09-03 09:50:36 +0300 |
commit | b07aaeb2956cd93e5cc31568523e0e9fec8e74c0 (patch) | |
tree | 80af274b045962ab1f5805301ffc1dfa15a21b96 /sql/sql_select.h | |
parent | 189d1dd630676a2e3be004d27770ae820e81b36b (diff) | |
download | mariadb-git-b07aaeb2956cd93e5cc31568523e0e9fec8e74c0.tar.gz |
subselect with union
new error handling
Item_ref bug fixed
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index 3062747a08f..0f7e08d268e 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -209,6 +209,7 @@ class JOIN :public Sql_alloc{ send_records(0), found_records(0), examined_rows(0), thd(thd), sum_funcs(0), + procedure(0), having(0), select_options(select_options), result(result), @@ -235,7 +236,8 @@ class JOIN :public Sql_alloc{ int prepare(TABLE_LIST *tables, COND *conds, ORDER *order, ORDER *group, Item *having, - ORDER *proc_param, SELECT_LEX *select, SELECT_LEX_UNIT *unit); + ORDER *proc_param, SELECT_LEX *select, SELECT_LEX_UNIT *unit, + bool fake_select_lex); int optimize(); int global_optimize(); int reinit(); |