diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-06-27 09:31:23 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-06-27 09:31:23 +0900 |
commit | 94e2e150ec72a3b37e3847be99c4aca3320c38f9 (patch) | |
tree | 522fa96a48277d78006903187d908629d935dd14 | |
parent | 7fb3c38e7d7d12a742e1e7600879570251e1886a (diff) | |
download | postgresql-94e2e150ec72a3b37e3847be99c4aca3320c38f9.tar.gz postgresql-94e2e150ec72a3b37e3847be99c4aca3320c38f9.zip |
binaryheap.c and stringinfo.c have been moved to src/common/ by
respectively 5af0263afd7b and 26aaf97b683d, and the README patched here
still mentioned these two files as available in src/backend/lib/.
Author: Aleksander Alekseev <aleksander@timescale.com>
Discussion: https://postgr.es/m/CAJ7c6TPg-=tC+fzq0tGTtmL7r79-aWeCmpwAyQiGu0N+sKGj8Q@mail.gmail.com
-rw-r--r-- | src/backend/lib/README | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/backend/lib/README b/src/backend/lib/README index f2fb591237d..c28cbe356f0 100644 --- a/src/backend/lib/README +++ b/src/backend/lib/README @@ -1,8 +1,6 @@ This directory contains a general purpose data structures, for use anywhere in the backend: -binaryheap.c - a binary heap - bipartite_match.c - Hopcroft-Karp maximum cardinality algorithm for bipartite graphs bloomfilter.c - probabilistic, space-efficient set membership testing @@ -21,8 +19,6 @@ pairingheap.c - a pairing heap rbtree.c - a red-black tree -stringinfo.c - an extensible string type - Aside from the inherent characteristics of the data structures, there are a few practical differences between the binary heap and the pairing heap. The |