summaryrefslogtreecommitdiff
path: root/src/backend/nodes
diff options
context:
space:
mode:
authorRobert Haas2017-02-07 20:58:30 +0000
committerRobert Haas2017-02-07 21:01:44 +0000
commit565903af474e85cef28ff712d773f13b6701ded5 (patch)
tree14a39513fb712b2c9aebd8fd5ce94d911a06caf6 /src/backend/nodes
parent94708c0e8c32ad1c9c6ffbdb894fe158eda596e7 (diff)
Allow the element allocator for a simplehash to be specified.
This is infrastructure for a pending patch to allow parallel bitmap heap scans. Dilip Kumar, reviewed (in earlier versions) by Andres Freund and (more recently) by me. Some further renaming by me, also.
Diffstat (limited to 'src/backend/nodes')
-rw-r--r--src/backend/nodes/tidbitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/tidbitmap.c b/src/backend/nodes/tidbitmap.c
index 7b31948fd2..36102b5dea 100644
--- a/src/backend/nodes/tidbitmap.c
+++ b/src/backend/nodes/tidbitmap.c
@@ -244,7 +244,7 @@ tbm_create_pagetable(TIDBitmap *tbm)
Assert(tbm->status != TBM_HASH);
Assert(tbm->pagetable == NULL);
- tbm->pagetable = pagetable_create(tbm->mcxt, 128);
+ tbm->pagetable = pagetable_create(tbm->mcxt, 128, NULL, NULL, NULL);
/* If entry1 is valid, push it into the hashtable */
if (tbm->status == TBM_ONE_PAGE)