mirror of
https://github.com/postgres/postgres.git
synced 2025-11-21 00:42:43 +03:00
Basic binary heap implementation.
There are probably other places where this can be used, but for now, this just makes MergeAppend use it, so that this code will have test coverage. There is other work in the queue that will use this, as well. Abhijit Menon-Sen, reviewed by Andres Freund, Robert Haas, Álvaro Herrera, Tom Lane, and others.
This commit is contained in:
@@ -12,6 +12,6 @@ subdir = src/backend/lib
|
||||
top_builddir = ../../..
|
||||
include $(top_builddir)/src/Makefile.global
|
||||
|
||||
OBJS = ilist.o stringinfo.o
|
||||
OBJS = ilist.o binaryheap.o stringinfo.o
|
||||
|
||||
include $(top_srcdir)/src/backend/common.mk
|
||||
|
||||
Reference in New Issue
Block a user