~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_union.cc

Merge trunk changes and resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <drizzled/sql_base.h>
25
25
#include <drizzled/sql_union.h>
26
26
 
 
27
namespace drizzled
 
28
{
 
29
 
27
30
bool drizzle_union(Session *session, LEX *, select_result *result,
28
31
                   Select_Lex_Unit *unit, uint64_t setup_tables_done_option)
29
32
{
732
735
    for (sl= unit->first_select(); sl; sl= sl->next_select())
733
736
      sl->cleanup_all_joins(full);
734
737
}
 
738
 
 
739
} /* namespace drizzled */