aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam_handler.c
diff options
context:
space:
mode:
authorThomas Munro <tmunro@postgresql.org>2020-07-29 16:46:58 +1200
committerThomas Munro <tmunro@postgresql.org>2020-07-29 16:59:33 +1200
commitcb04ad498551dcdb91a834c2e8730cdf0b77e70a (patch)
tree2079a9e2825f8db93e8c86ce1415f004f4c773a5 /src/backend/access/heap/heapam_handler.c
parentc49c74d19241b1fc8da6c215ebb40fd6b71c1bff (diff)
downloadpostgresql-cb04ad498551dcdb91a834c2e8730cdf0b77e70a.tar.gz
postgresql-cb04ad498551dcdb91a834c2e8730cdf0b77e70a.zip
Move syncscan.c to src/backend/access/common.
Since the tableam.c code needs to make use of the syncscan.c routines itself, and since other block-oriented AMs might also want to use it one day, it didn't make sense for it to live under src/backend/access/heap. Reviewed-by: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/CA%2BhUKGLCnG%3DNEAByg6bk%2BCT9JZD97Y%3DAxKhh27Su9FeGWOKvDg%40mail.gmail.com
Diffstat (limited to 'src/backend/access/heap/heapam_handler.c')
-rw-r--r--src/backend/access/heap/heapam_handler.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/access/heap/heapam_handler.c b/src/backend/access/heap/heapam_handler.c
index 8f2e5379210..267a6ee25a7 100644
--- a/src/backend/access/heap/heapam_handler.c
+++ b/src/backend/access/heap/heapam_handler.c
@@ -24,6 +24,7 @@
#include "access/heaptoast.h"
#include "access/multixact.h"
#include "access/rewriteheap.h"
+#include "access/syncscan.h"
#include "access/tableam.h"
#include "access/tsmapi.h"
#include "access/xact.h"