summaryrefslogtreecommitdiff
path: root/sql/item_subselect.cc
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2004-02-20 15:37:45 +0200
committerunknown <bell@sanja.is.com.ua>2004-02-20 15:37:45 +0200
commit7dd164f7305ab2ac1bfc95c214935e61be6e6510 (patch)
treed3afd2e4ba17d5cdc9e6991bdae53a08a29f7652 /sql/item_subselect.cc
parent36d2d2061bddd2dccaeab70904221950e220663d (diff)
downloadmariadb-git-7dd164f7305ab2ac1bfc95c214935e61be6e6510.tar.gz
after review fix
sql/item.h: typo fixed sql/item_func.h: clear refernce on deleted variable sql/item_subselect.cc: layout fixed sql/sql_base.cc: temporary memory pool allocation moved from open_and_lock_tables sql/sql_prepare.cc: temporary memory pool allocation moved changing in routine suggeted by Monty tests/client_test.c: uncomment accidently commented test
Diffstat (limited to 'sql/item_subselect.cc')
-rw-r--r--sql/item_subselect.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/item_subselect.cc b/sql/item_subselect.cc
index a8e236d3e0a..bfe41726f72 100644
--- a/sql/item_subselect.cc
+++ b/sql/item_subselect.cc
@@ -57,8 +57,7 @@ void Item_subselect::init(st_select_lex *select_lex,
unit= select_lex->master_unit();
if (select_lex->next_select())
- engine= new subselect_union_engine(unit, result,
- this);
+ engine= new subselect_union_engine(unit, result, this);
else
engine= new subselect_single_select_engine(select_lex, result, this);
DBUG_VOID_RETURN;