[PATCH 2/8] Add minimal binary heap implementation - Mailing list pgsql-hackers

From Andres Freund
Subject [PATCH 2/8] Add minimal binary heap implementation
Date
Msg-id 1347669575-14371-2-git-send-email-andres@2ndquadrant.com
Whole thread Raw
In response to [RFC][PATCH] wal decoding, attempt #2  (Andres Freund <andres@2ndquadrant.com>)
List pgsql-hackers
This is basically untested.
---
 src/backend/lib/Makefile     |   2 +-
 src/backend/lib/simpleheap.c | 255 +++++++++++++++++++++++++++++++++++++++++++
 src/include/lib/simpleheap.h |  91 +++++++++++++++
 3 files changed, 347 insertions(+), 1 deletion(-)
 create mode 100644 src/backend/lib/simpleheap.c
 create mode 100644 src/include/lib/simpleheap.h


Attachment

pgsql-hackers by date:

Previous
From: Andres Freund
Date:
Subject: [RFC][PATCH] wal decoding, attempt #2
Next
From: Andres Freund
Date:
Subject: [PATCH 1/8] Add embedded list interface (header only)