diff options
author | unknown <bell@laptop.sanja.is.com.ua> | 2003-08-23 13:33:02 +0300 |
---|---|---|
committer | unknown <bell@laptop.sanja.is.com.ua> | 2003-08-23 13:33:02 +0300 |
commit | 59af2947aa7031fd34a3d57a953e5a04259d8ac2 (patch) | |
tree | 4f6d79cb5f82da36a9f726d08df99015a17cf5be /sql/item_subselect.h | |
parent | 4a36d2ada66e1aa4d685b1b69094ff5226b24e5f (diff) | |
parent | 07b5040719491f007bcdacbc982736edbd3b26c7 (diff) | |
download | mariadb-git-59af2947aa7031fd34a3d57a953e5a04259d8ac2.tar.gz |
Merge laptop.sanja.is.com.ua:/home/bell/mysql/bk/work-all_any-4.1
into laptop.sanja.is.com.ua:/home/bell/mysql/bk/work-all_any_group-4.1
mysql-test/r/subselect.result:
Auto merged
mysql-test/t/subselect.test:
Auto merged
sql/item_subselect.cc:
Auto merged
sql/item_subselect.h:
Auto merged
sql/sql_class.cc:
Auto merged
sql/sql_class.h:
Auto merged
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r-- | sql/item_subselect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h index d3aa8f59e49..9e4c5485405 100644 --- a/sql/item_subselect.h +++ b/sql/item_subselect.h @@ -216,7 +216,8 @@ public: Item_in_subselect(THD *thd, Item * left_expr, st_select_lex *select_lex); Item_in_subselect(Item_in_subselect *item); - Item_in_subselect(): Item_exists_subselect(), abort_on_null(0) {} + Item_in_subselect() + :Item_exists_subselect(), abort_on_null(0), upper_not(0) {} subs_type substype() { return IN_SUBS; } void reset() @@ -237,7 +238,6 @@ public: void top_level_item() { abort_on_null=1; } bool test_limit(st_select_lex_unit *unit); - friend class Item_asterisk_remover; friend class Item_ref_null_helper; friend class Item_is_not_null_test; friend class subselect_indexin_engine; |