~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/explain_plan.cc

  • Committer: Olaf van der Spek
  • Date: 2011-02-18 10:22:24 UTC
  • mto: (2180.1.3 drizzle-staging)
  • mto: This revision was merged to the branch mainline in revision 2181.
  • Revision ID: olafvdspek@gmail.com-20110218102224-bjqbn4734ylsol0u
Rename List::empty to clear (std::list uses clear)

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));