diff options
author | gluh@eagle.(none) <> | 2007-02-26 15:54:43 +0400 |
---|---|---|
committer | gluh@eagle.(none) <> | 2007-02-26 15:54:43 +0400 |
commit | 975a23ed0f3eed0f1d7e48743503a652682976ba (patch) | |
tree | 62234448cb3dc85a182c21b8ef92ed380c119cd6 /sql/sql_lex.h | |
parent | 7ffb94edcfb61546293e3b8cf2f4175ed4b2ae00 (diff) | |
parent | d9831e91a19c46aa5e373b682e26ca23bc048c40 (diff) | |
download | mariadb-git-975a23ed0f3eed0f1d7e48743503a652682976ba.tar.gz |
Merge mysql.com:/home/gluh/MySQL/Merge/5.0-opt
into mysql.com:/home/gluh/MySQL/Merge/5.1-opt
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 821af3f946d..fa0f9d7cbbb 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -566,6 +566,11 @@ public: uint select_n_having_items; uint cond_count; /* number of arguments of and/or/xor in where/having/on */ uint between_count; /* number of between predicates in where/having/on */ + /* + Number of fields used in select list or where clause of current select + and all inner subselects. + */ + uint select_n_where_fields; enum_parsing_place parsing_place; /* where we are parsing expression */ bool with_sum_func; /* sum function indicator */ /* @@ -583,7 +588,8 @@ public: bool braces; /* SELECT ... UNION (SELECT ... ) <- this braces */ /* TRUE when having fix field called in processing of this SELECT */ bool having_fix_field; - + /* List of references to fields referenced from inner selects */ + List<Item_outer_ref> inner_refs_list; /* Number of Item_sum-derived objects in this SELECT */ uint n_sum_items; /* Number of Item_sum-derived objects in children and descendant SELECTs */ |