~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_derived.cc

  • Committer: Monty Taylor
  • Date: 2008-08-18 23:04:17 UTC
  • mfrom: (327.1.12 drizzle)
  • Revision ID: monty@inaugust.com-20080818230417-442rhihpahnout34
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
  if (unit)
102
102
  {
103
103
    SELECT_LEX *first_select= unit->first_select();
104
 
    TABLE *table= 0;
 
104
    Table *table= 0;
105
105
    select_union *derived_result;
106
106
 
107
107
    /* prevent name resolving out of derived table */
199
199
 
200
200
bool mysql_derived_filling(THD *thd, LEX *lex, TABLE_LIST *orig_table_list)
201
201
{
202
 
  TABLE *table= orig_table_list->table;
 
202
  Table *table= orig_table_list->table;
203
203
  SELECT_LEX_UNIT *unit= orig_table_list->derived;
204
204
  bool res= false;
205
205