Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0b193c

Browse files
committed
Split tuplesortvariants.c from tuplesort.c
This commit puts the implementation of Tuple sort variants into the separate file tuplesortvariants.c. That gives better separation of the code and serves well as the demonstration that Tuple sort variant can be defined outside of tuplesort.c. 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
1 parent ec92fe9 commit d0b193c

File tree

4 files changed

+1784
-1745
lines changed

4 files changed

+1784
-1745
lines changed

src/backend/utils/sort/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ OBJS = \
2020
sharedtuplestore.o \
2121
sortsupport.o \
2222
tuplesort.o \
23+
tuplesortvariants.o \
2324
tuplestore.o
2425

2526
include $(top_srcdir)/src/backend/common.mk

0 commit comments

Comments
 (0)