My Project
|
#include <filesort.h>
Public Member Functions | |
Filesort (ORDER *order_arg, ha_rows limit_arg, SQL_SELECT *select_arg) | |
uint | make_sortorder () |
Public Attributes | |
ORDER * | order |
ha_rows | limit |
SORT_FIELD * | sortorder |
SQL_SELECT * | select |
bool | own_select |
bool | using_pq |
Sorting related info. To be extended by another WL to include complete filesort implementation.
ha_rows Filesort::limit |
Number of records to return
List of expressions to order the table by
bool Filesort::own_select |
TRUE <=> free select on destruction
select to use for getting records
SORT_FIELD* Filesort::sortorder |
ORDER BY list with some precalculated info for filesort
bool Filesort::using_pq |
true means we are using Priority Queue for order by with limit.