~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

Modified the names of 2 classes in the optimizer to adhere to the coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4885
4885
        else
4886
4886
        {
4887
4887
          /*
4888
 
            The range optimizer constructed QUICK_RANGE for ref_key, and
 
4888
            The range optimizer constructed QuickRange for ref_key, and
4889
4889
            we want to use instead new_ref_key as the index. We can't
4890
4890
            just change the index of the quick select, because this may
4891
4891
            result in an incosistent QUICK_SELECT object. Below we
5168
5168
        }
5169
5169
 
5170
5170
        /* order_st BY range_key DESC */
5171
 
        tmp= new optimizer::QUICK_SELECT_DESC((optimizer::QUICK_RANGE_SELECT*)(select->quick),
 
5171
        tmp= new optimizer::QUICK_SELECT_DESC((optimizer::QuickRangeSelect*)(select->quick),
5172
5172
                                              used_key_parts, &error);
5173
5173
        if (!tmp || error)
5174
5174
        {