diff options
author | Álvaro Herrera <alvherre@kurilemu.de> | 2025-10-05 17:35:25 +0200 |
---|---|---|
committer | Álvaro Herrera <alvherre@kurilemu.de> | 2025-10-05 17:35:25 +0200 |
commit | 1b6f61bd89889f704656005e7c1f1a40255230e5 (patch) | |
tree | eef4ec54213dd71badc2750c79fe39ccf8f02101 /src/include/access/gin.h | |
parent | 03d40e4b523b2075c198aa89d9445ea8297f8eca (diff) |
Don't include execnodes.h in brin.h or gin.h
These headers don't need execnodes.h for anything. I think they never
have.
Discussion: https://postgr.es/m/202510021240.ptc2zl5cvwen@alvherre.pgsql
Diffstat (limited to 'src/include/access/gin.h')
-rw-r--r-- | src/include/access/gin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/gin.h b/src/include/access/gin.h index 2e1076a0499..13ea91922ef 100644 --- a/src/include/access/gin.h +++ b/src/include/access/gin.h @@ -12,9 +12,9 @@ #include "access/xlogreader.h" #include "lib/stringinfo.h" -#include "nodes/execnodes.h" -#include "storage/shm_toc.h" #include "storage/block.h" +#include "storage/dsm.h" +#include "storage/shm_toc.h" #include "utils/relcache.h" |