~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Nathan Williams
  • Date: 2009-06-05 22:22:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605222221-usmgpjhggrwjgz9w
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7320
7320
{
7321
7321
  Item *pos;
7322
7322
  List_iterator_fast<Item> li(all_fields);
7323
 
  Copy_field *copy= NULL;
 
7323
  CopyField *copy= NULL;
7324
7324
  res_selected_fields.empty();
7325
7325
  res_all_fields.empty();
7326
7326
  List_iterator_fast<Item> itr(res_all_fields);
7328
7328
  uint32_t i, border= all_fields.elements - elements;
7329
7329
 
7330
7330
  if (param->field_count &&
7331
 
      !(copy=param->copy_field= new Copy_field[param->field_count]))
 
7331
      !(copy=param->copy_field= new CopyField[param->field_count]))
7332
7332
    goto err2;
7333
7333
 
7334
7334
  param->copy_funcs.empty();
7449
7449
*/
7450
7450
void copy_fields(Tmp_Table_Param *param)
7451
7451
{
7452
 
  Copy_field *ptr=param->copy_field;
7453
 
  Copy_field *end=param->copy_field_end;
 
7452
  CopyField *ptr=param->copy_field;
 
7453
  CopyField *end=param->copy_field_end;
7454
7454
 
7455
7455
  for (; ptr != end; ptr++)
7456
7456
    (*ptr->do_copy)(ptr);