~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_derived.cc

  • Committer: tdavies
  • Date: 2010-10-31 07:38:13 UTC
  • mto: (1897.2.4 merge)
  • mto: This revision was merged to the branch mainline in revision 1899.
  • Revision ID: tdavies@molly-20101031073813-mmu12nqc0bwezxny
struct order_st changed and renamed to c++ class named:Order

Show diffs side-by-side

added added

removed removed

Lines of Context:
214
214
                        first_select->item_list, first_select->where,
215
215
                        (first_select->order_list.elements+
216
216
                        first_select->group_list.elements),
217
 
                        (order_st *) first_select->order_list.first,
218
 
                        (order_st *) first_select->group_list.first,
 
217
                        (Order *) first_select->order_list.first,
 
218
                        (Order *) first_select->group_list.first,
219
219
                        first_select->having,
220
220
                        (first_select->options | session->options | SELECT_NO_UNLOCK),
221
221
                        derived_result, unit, first_select);