~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort.cc

Split some classes from the range optimizer out in to their own header and implementation files.
Corrected the case on these classes also to adhere to the coding standards. Cleaned up any style
issues in any code I came across while moving code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 
135
135
  /*
136
136
    Don't use table->sort in filesort as it is also used by
137
 
    QUICK_INDEX_MERGE_SELECT. Work with a copy and put it back at the end
 
137
    QuickIndexMergeSelect. Work with a copy and put it back at the end
138
138
    when index_merge select has finished with it.
139
139
  */
140
140
  memcpy(&table_sort, &table->sort, sizeof(filesort_info_st));