From: Peter Eisentraut Date: Mon, 4 Feb 2019 20:29:31 +0000 (+0100) Subject: Remove unused macro X-Git-Tag: REL_12_BETA1~811 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f602cf49c2f614ef7450df30bab9df29842bd359;p=thirdparty%2Fpostgresql.git Remove unused macro Use was removed in 6d46f4783efe457f74816a75173eb23ed8930020 but definition was forgotten. --- diff --git a/src/backend/access/hash/hashpage.c b/src/backend/access/hash/hashpage.c index 0f85256b7e7..b7adfdb826e 100644 --- a/src/backend/access/hash/hashpage.c +++ b/src/backend/access/hash/hashpage.c @@ -48,16 +48,6 @@ static void _hash_splitbucket(Relation rel, Buffer metabuf, static void log_split_page(Relation rel, Buffer buf); -/* - * We use high-concurrency locking on hash indexes (see README for an overview - * of the locking rules). However, we can skip taking lmgr locks when the - * index is local to the current backend (ie, either temp or new in the - * current transaction). No one else can see it, so there's no reason to - * take locks. We still take buffer-level locks, but not lmgr locks. - */ -#define USELOCKING(rel) (!RELATION_IS_LOCAL(rel)) - - /* * _hash_getbuf() -- Get a buffer by block number for read or write. *