~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/explain_plan.cc

  • Committer: Brian Aker
  • Date: 2011-02-18 16:48:57 UTC
  • mfrom: (2180.1.3 drizzle-staging)
  • Revision ID: brian@tangent.org-20110218164857-4n61en8wai9c91gi
Rollup all of Olaf's branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
       appreciated :)
117
117
     */
118
118
    char table_name_buffer[NAME_LEN];
119
 
    item_list.empty();
 
119
    item_list.clear();
120
120
    /* id */
121
121
    item_list.push_back(new Item_null);
122
122
    /* select_type */
189
189
      string tmp3;
190
190
 
191
191
      quick_type= -1;
192
 
      item_list.empty();
 
192
      item_list.clear();
193
193
      /* id */
194
194
      item_list.push_back(new Item_uint((uint32_t)
195
195
            join->select_lex->select_number));