~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort.cc

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
  TABLE_LIST *tab= table->pos_in_table_list;
111
111
  Item_subselect *subselect= tab ? tab->containing_subselect() : 0;
112
112
 
113
 
  MYSQL_FILESORT_START();
 
113
  DRIZZLE_FILESORT_START();
114
114
 
115
115
  /*
116
116
   Release InnoDB's adaptive hash index latch (if holding) before
317
317
                  (uint32_t) records, &LOCK_status);
318
318
  *examined_rows= param.examined_rows;
319
319
  memcpy(&table->sort, &table_sort, sizeof(FILESORT_INFO));
320
 
  MYSQL_FILESORT_END();
 
320
  DRIZZLE_FILESORT_END();
321
321
  return(error ? HA_POS_ERROR : records);
322
322
} /* filesort */
323
323