diff options
author | unknown <bell@sanja.is.com.ua> | 2003-06-26 11:09:11 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-06-26 11:09:11 +0300 |
commit | 54cd790bf3bfb57624d516ad22c432c5a1ff7958 (patch) | |
tree | 015b41463abf182565ced80be808dbeb335e48c5 /sql/sql_lex.h | |
parent | 11e9c572ad1d81536902dd01d48c68ef00ce9018 (diff) | |
download | mariadb-git-54cd790bf3bfb57624d516ad22c432c5a1ff7958.tar.gz |
cond_count moved to SELECT_LEX_NODE
fixed BUG #726
mysql-test/r/subselect.result:
test of bug #726
mysql-test/t/subselect.test:
test of bug #726
sql/item_cmpfunc.cc:
cond_count moved to SELECT_LEX_NODE
sql/item_subselect.cc:
fixed current_select pointer
sql/sql_base.cc:
cond_count moved to SELECT_LEX_NODE
sql/sql_class.cc:
cond_count moved to SELECT_LEX_NODE
sql/sql_class.h:
cond_count moved to SELECT_LEX_NODE
sql/sql_lex.cc:
cond_count moved to SELECT_LEX_NODE
sql/sql_lex.h:
cond_count moved to SELECT_LEX_NODE
sql/sql_select.cc:
cond_count moved to SELECT_LEX_NODE
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 6226fbe1bb5..caeb0e67769 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -207,6 +207,7 @@ public: Item **ref_pointer_array; uint select_items; /* number of items in select_list */ + uint cond_count; /* number of arguments of and/or/xor in where/having */ enum_parsing_place parsing_place; /* where we are parsing expression */ bool with_sum_func; /* sum function indicator */ bool dependent; /* dependent from outer select subselect */ |