~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to drizzled/sql_derived.cc

  • Committer: Monty Taylor
  • Date: 2010-03-03 19:27:30 UTC
  • mto: (1308.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 1278.
  • Revision ID: mordred@inaugust.com-20100303192730-o2o3nmp0lzhuatbe
Tags: upstream-2010.03.1317
ImportĀ upstreamĀ versionĀ 2010.03.1317

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include "config.h"
21
21
#include "drizzled/sql_select.h"
22
22
 
 
23
namespace drizzled
 
24
{
 
25
 
23
26
/*
24
27
  Call given derived table processor (preparing or filling tables)
25
28
 
120
123
    */
121
124
    if ((res= derived_result->create_result_table(session, &unit->types, false,
122
125
                                                  create_options,
123
 
                                                  orig_table_list->alias,
124
 
                                                  false)))
 
126
                                                  orig_table_list->alias)))
125
127
      goto exit;
126
128
 
127
129
    table= derived_result->table;
241
243
  }
242
244
  return res;
243
245
}
 
246
 
 
247
} /* namespace drizzled */