~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_derived.cc

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

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
 
 
26
23
/*
27
24
  Call given derived table processor (preparing or filling tables)
28
25
 
123
120
    */
124
121
    if ((res= derived_result->create_result_table(session, &unit->types, false,
125
122
                                                  create_options,
126
 
                                                  orig_table_list->alias)))
 
123
                                                  orig_table_list->alias,
 
124
                                                  false)))
127
125
      goto exit;
128
126
 
129
127
    table= derived_result->table;
152
150
      orig_table_list->table_name=        table->s->table_name.str;
153
151
      orig_table_list->table_name_length= table->s->table_name.length;
154
152
      table->derived_select_number= first_select->select_number;
155
 
      table->s->tmp_table= message::Table::TEMPORARY;
 
153
      table->s->tmp_table= TEMP_TABLE;
156
154
      orig_table_list->db= (char *)"";
157
155
      orig_table_list->db_length= 0;
158
156
      /* Force read of table stats in the optimizer */
243
241
  }
244
242
  return res;
245
243
}
246
 
 
247
 
} /* namespace drizzled */