aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/cluster.c
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2019-01-21 17:03:15 -0800
committerAndres Freund <andres@anarazel.de>2019-01-21 17:07:10 -0800
commitc91560defc57f89f7e88632ea14ae77b5cec78ee (patch)
tree250740f86c98f29eb20bdacf816ced13579c6a92 /src/backend/commands/cluster.c
parentb7eda3e0e33402a7727253e6f307ca96b92eb23d (diff)
downloadpostgresql-c91560defc57f89f7e88632ea14ae77b5cec78ee.tar.gz
postgresql-c91560defc57f89f7e88632ea14ae77b5cec78ee.zip
Move remaining code from tqual.[ch] to heapam.h / heapam_visibility.c.
Given these routines are heap specific, and that there will be more generic visibility support in via table AM, it makes sense to move the prototypes to heapam.h (routines like HeapTupleSatisfiesVacuum will not be exposed in a generic fashion, because they are too storage specific). Similarly, the code in tqual.c is specific to heap, so moving it into access/heap/ makes sense. Author: Andres Freund Discussion: https://postgr.es/m/20180703070645.wchpu5muyto5n647@alap3.anarazel.de
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r--src/backend/commands/cluster.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c
index 99e25cd50fb..5c0f238c7e2 100644
--- a/src/backend/commands/cluster.c
+++ b/src/backend/commands/cluster.c
@@ -52,7 +52,6 @@
#include "utils/relmapper.h"
#include "utils/snapmgr.h"
#include "utils/syscache.h"
-#include "utils/tqual.h"
#include "utils/tuplesort.h"