mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Teach CLUSTER to use seqscan-and-sort when it's faster than indexscan.
... or at least, when the planner's cost estimates say it will be faster. Leonardo Francalanci, reviewed by Itagaki Takahiro and Tom Lane
This commit is contained in:
@@ -32,29 +32,39 @@
|
||||
typedef struct Tuplesortstate Tuplesortstate;
|
||||
|
||||
/*
|
||||
* We provide two different interfaces to what is essentially the same
|
||||
* code: one for sorting HeapTuples and one for sorting IndexTuples.
|
||||
* They differ primarily in the way that the sort key information is
|
||||
* supplied. Also, the HeapTuple case actually stores MinimalTuples,
|
||||
* which means it doesn't preserve the "system columns" (tuple identity and
|
||||
* transaction visibility info). The IndexTuple case does preserve all
|
||||
* the header fields of an index entry. In the HeapTuple case we can
|
||||
* save some cycles by passing and returning the tuples in TupleTableSlots,
|
||||
* rather than forming actual HeapTuples (which'd have to be converted to
|
||||
* MinimalTuples).
|
||||
* We provide multiple interfaces to what is essentially the same code,
|
||||
* since different callers have different data to be sorted and want to
|
||||
* specify the sort key information differently. There are two APIs for
|
||||
* sorting HeapTuples and two more for sorting IndexTuples. Yet another
|
||||
* API supports sorting bare Datums.
|
||||
*
|
||||
* The IndexTuple case is itself broken into two subcases, one for btree
|
||||
* indexes and one for hash indexes; the latter variant actually sorts
|
||||
* the tuples by hash code. The API is the same except for the "begin"
|
||||
* routine.
|
||||
* The "heap" API actually stores/sorts MinimalTuples, which means it doesn't
|
||||
* preserve the system columns (tuple identity and transaction visibility
|
||||
* info). The sort keys are specified by column numbers within the tuples
|
||||
* and sort operator OIDs. We save some cycles by passing and returning the
|
||||
* tuples in TupleTableSlots, rather than forming actual HeapTuples (which'd
|
||||
* have to be converted to MinimalTuples). This API works well for sorts
|
||||
* executed as parts of plan trees.
|
||||
*
|
||||
* Yet another slightly different interface supports sorting bare Datums.
|
||||
* The "cluster" API stores/sorts full HeapTuples including all visibility
|
||||
* info. The sort keys are specified by reference to a btree index that is
|
||||
* defined on the relation to be sorted. Note that putheaptuple/getheaptuple
|
||||
* go with this API, not the "begin_heap" one!
|
||||
*
|
||||
* The "index_btree" API stores/sorts IndexTuples (preserving all their
|
||||
* header fields). The sort keys are specified by a btree index definition.
|
||||
*
|
||||
* The "index_hash" API is similar to index_btree, but the tuples are
|
||||
* actually sorted by their hash codes not the raw data.
|
||||
*/
|
||||
|
||||
extern Tuplesortstate *tuplesort_begin_heap(TupleDesc tupDesc,
|
||||
int nkeys, AttrNumber *attNums,
|
||||
Oid *sortOperators, bool *nullsFirstFlags,
|
||||
int workMem, bool randomAccess);
|
||||
extern Tuplesortstate *tuplesort_begin_cluster(TupleDesc tupDesc,
|
||||
Relation indexRel,
|
||||
int workMem, bool randomAccess);
|
||||
extern Tuplesortstate *tuplesort_begin_index_btree(Relation indexRel,
|
||||
bool enforceUnique,
|
||||
int workMem, bool randomAccess);
|
||||
@@ -69,6 +79,7 @@ extern void tuplesort_set_bound(Tuplesortstate *state, int64 bound);
|
||||
|
||||
extern void tuplesort_puttupleslot(Tuplesortstate *state,
|
||||
TupleTableSlot *slot);
|
||||
extern void tuplesort_putheaptuple(Tuplesortstate *state, HeapTuple tup);
|
||||
extern void tuplesort_putindextuple(Tuplesortstate *state, IndexTuple tuple);
|
||||
extern void tuplesort_putdatum(Tuplesortstate *state, Datum val,
|
||||
bool isNull);
|
||||
@@ -77,6 +88,8 @@ extern void tuplesort_performsort(Tuplesortstate *state);
|
||||
|
||||
extern bool tuplesort_gettupleslot(Tuplesortstate *state, bool forward,
|
||||
TupleTableSlot *slot);
|
||||
extern HeapTuple tuplesort_getheaptuple(Tuplesortstate *state, bool forward,
|
||||
bool *should_free);
|
||||
extern IndexTuple tuplesort_getindextuple(Tuplesortstate *state, bool forward,
|
||||
bool *should_free);
|
||||
extern bool tuplesort_getdatum(Tuplesortstate *state, bool forward,
|
||||
|
Reference in New Issue
Block a user