summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMasahiko Sawada2024-12-09 21:07:03 +0000
committerMasahiko Sawada2024-12-09 21:07:03 +0000
commita12b0f3a9dc08ed18711fdcd38763cb3f6bc9f69 (patch)
tree6742e832f0e16cbeab561bfc7ec0f9a358fbee8b /src/include
parentf36fe5d07bf94c97cfb6b3f3eefef47702a70e97 (diff)
Include necessary header files in radixtree.h.
When #include'ing radixtree.h with RT_SHMEM, it could happen to raise compiler errors due to missing some declarations of types and functions. This commit also removes the inclusion of postgres.h since it's against our usual convention. Backpatch to v17, where radixtree.h was introduced. Reviewed-by: Heikki Linnakangas, Álvaro Herrera Discussion: https://postgr.es/m/CAD21AoCU9YH%2Bb9Rr8YRw7UjmB%3D1zh8GKQkWNiuN9mVhMvkyrRg%40mail.gmail.com Backpatch-through: 17
Diffstat (limited to 'src/include')
-rw-r--r--src/include/lib/radixtree.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/lib/radixtree.h b/src/include/lib/radixtree.h
index 88bf695e3f3..1301f3fee44 100644
--- a/src/include/lib/radixtree.h
+++ b/src/include/lib/radixtree.h
@@ -151,13 +151,15 @@
*-------------------------------------------------------------------------
*/
-#include "postgres.h"
-
#include "nodes/bitmapset.h"
#include "port/pg_bitutils.h"
#include "port/simd.h"
#include "utils/dsa.h"
#include "utils/memutils.h"
+#ifdef RT_SHMEM
+#include "miscadmin.h"
+#include "storage/lwlock.h"
+#endif
/* helpers */
#define RT_MAKE_PREFIX(a) CppConcat(a,_)