diff options
author | bell@laptop.sanja.is.com.ua <> | 2003-08-23 13:33:02 +0300 |
---|---|---|
committer | bell@laptop.sanja.is.com.ua <> | 2003-08-23 13:33:02 +0300 |
commit | f77f46d8ebd605508d1ba80ad368226d5c473acf (patch) | |
tree | 4f6d79cb5f82da36a9f726d08df99015a17cf5be /sql/item_subselect.h | |
parent | 6ac8e9b93c8ca84f0fe6bf42a55532092ed2e948 (diff) | |
parent | 555386863802bbebeb9cf50deb8bc004bc4c5be4 (diff) | |
download | mariadb-git-f77f46d8ebd605508d1ba80ad368226d5c473acf.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
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; |