From 54ab02eb2188382185436059ff6e7ad95d970c5d Mon Sep 17 00:00:00 2001 From: John Naylor Date: Tue, 14 Feb 2023 17:00:31 +0700 Subject: [PATCH v27 7/9] Prevent inlining of interface functions for shmem --- src/backend/access/common/tidstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/common/tidstore.c b/src/backend/access/common/tidstore.c index ad8c0866e2..d1b4675ea4 100644 --- a/src/backend/access/common/tidstore.c +++ b/src/backend/access/common/tidstore.c @@ -84,7 +84,7 @@ #define RT_PREFIX shared_rt #define RT_SHMEM -#define RT_SCOPE static +#define RT_SCOPE static pg_noinline #define RT_DECLARE #define RT_DEFINE #define RT_VALUE_TYPE uint64 -- 2.39.1