diff options
| author | Alexander Korotkov <akorotkov@postgresql.org> | 2022-07-27 08:28:10 +0300 |
|---|---|---|
| committer | Alexander Korotkov <akorotkov@postgresql.org> | 2022-07-27 08:28:10 +0300 |
| commit | ec92fe98356a8a36427fe9ef52873b50fe17852e (patch) | |
| tree | 27052e135bb19b93456a93abc600c422b98571ee /src/tools | |
| parent | 097366c45f5dfe142eb232dc6d348ca0705a63a9 (diff) | |
Split TuplesortPublic from Tuplesortstate
The new TuplesortPublic data structure contains the definition of
sort-variant-specific interface methods and the part of Tuple sort operation
state required by their implementations. This will let define Tuple sort
variants without knowledge of Tuplesortstate, that is without knowledge
of generic sort implementation guts.
Discussion: https://postgr.es/m/CAPpHfdvjix0Ahx-H3Jp1M2R%2B_74P-zKnGGygx4OWr%3DbUQ8BNdw%40mail.gmail.com
Author: Alexander Korotkov
Reviewed-by: Pavel Borisov, Maxim Orlov, Matthias van de Meent
Reviewed-by: Andres Freund, John Naylor
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/pgindent/typedefs.list | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/pgindent/typedefs.list b/src/tools/pgindent/typedefs.list index 60709ddc987..35c9f1efce2 100644 --- a/src/tools/pgindent/typedefs.list +++ b/src/tools/pgindent/typedefs.list @@ -2833,8 +2833,14 @@ TupleHashTable TupleQueueReader TupleTableSlot TupleTableSlotOps +TuplesortClusterArg +TuplesortDatumArg +TuplesortIndexArg +TuplesortIndexBTreeArg +TuplesortIndexHashArg TuplesortInstrumentation TuplesortMethod +TuplesortPublic TuplesortSpaceType Tuplesortstate Tuplestorestate |
