~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-07 14:14:58 UTC
  • mfrom: (1112 staging)
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090807141458-qrc3don58s304ore
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
    next_name_resolution_table(NULL),
99
99
    index_hints(NULL),
100
100
    derived_result(NULL),
101
 
    correspondent_table(NULL),
102
101
    derived(NULL),
103
102
    schema_table(NULL),
104
103
    schema_select_lex(NULL),
208
207
    filling procedure
209
208
  */
210
209
  select_union  *derived_result;
211
 
  /*
212
 
    Reference from aux_tables to local list entry of main select of
213
 
    multi-delete statement:
214
 
    delete t1 from t2,t1 where t1.a<'B' and t2.b=t1.b;
215
 
    here it will be reference of first occurrence of t1 to second (as you
216
 
    can see this lists can't be merged)
217
 
  */
218
 
  TableList     *correspondent_table;
219
210
  Select_Lex_Unit *derived;             /* Select_Lex_Unit of derived table */
220
211
  InfoSchemaTable *schema_table;        /* Information_schema table */
221
212
  Select_Lex    *schema_select_lex;