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_class.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_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index db99fb443c8..ccfe2555518 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -520,7 +520,7 @@ public: ulong row_count; // Row counter, mainly for errors and warnings long dbug_thread_id; pthread_t real_id; - uint current_tablenr,tmp_table,cond_count; + uint current_tablenr,tmp_table; uint server_status,open_options; uint32 query_length; uint32 db_length; |