diff options
author | unknown <serg@serg.mylan> | 2004-05-21 13:29:50 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-05-21 13:29:50 +0200 |
commit | c38885fd3a5184caa8bedb5aa85bdf821fef4d81 (patch) | |
tree | 57a62206245f3cdda07b8a3fed1cf05bba37b818 /sql | |
parent | d4c67b60995f537f6e60276719e72fb2422b5853 (diff) | |
parent | b0528f1a0fdbf251ac58269bc7ffc07277fb0379 (diff) | |
download | mariadb-git-c38885fd3a5184caa8bedb5aa85bdf821fef4d81.tar.gz |
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sql_union.cc | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/sql/sql_union.cc b/sql/sql_union.cc index e56dd4b476e..70c05489f82 100644 --- a/sql/sql_union.cc +++ b/sql/sql_union.cc @@ -355,15 +355,18 @@ int st_select_lex_unit::exec() if (uncacheable || !item || !item->assigned() || describe) { - if (optimized && item && item->assigned()) + if (optimized && item) { - item->assigned(0); // We will reinit & rexecute unit - item->reset(); - table->file->delete_all_rows(); + if (item->assigned()) + { + item->assigned(0); // We will reinit & rexecute unit + item->reset(); + table->file->delete_all_rows(); + } + /* re-enabling indexes for next subselect iteration */ + if (union_distinct && table->file->enable_indexes(HA_KEY_SWITCH_ALL)) + DBUG_ASSERT(1); } - if (union_distinct && table->file->enable_indexes(HA_KEY_SWITCH_ALL) && - !describe) - DBUG_RETURN(1); // For sub-selects for (SELECT_LEX *sl= select_cursor; sl; sl= sl->next_select()) { ha_rows records_at_start= 0; |