aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/gist_private.h
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2023-01-11 11:54:55 +0900
committerMichael Paquier <michael@paquier.xyz>2023-01-11 11:54:55 +0900
commit69fb29d1affb525d4c91b4dc5b104a551e61c28d (patch)
treee62847c4110a8d9d47c724cddf6328f64a8d0ce7 /src/include/access/gist_private.h
parent3c6fc58209f24b959ee18f5d19ef96403d08f15c (diff)
downloadpostgresql-69fb29d1affb525d4c91b4dc5b104a551e61c28d.tar.gz
postgresql-69fb29d1affb525d4c91b4dc5b104a551e61c28d.zip
Remove function declarations from headers for some undefined functions
The functions whose declarations are removed here have been removed in the past, but their respective headers forgot the call. Author: Justin Pryzby Discussion: https://postgr.es/m/20230110045722.GD9837@telsasoft.com
Diffstat (limited to 'src/include/access/gist_private.h')
-rw-r--r--src/include/access/gist_private.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/access/gist_private.h b/src/include/access/gist_private.h
index f2bb4455f57..8af33d7b40d 100644
--- a/src/include/access/gist_private.h
+++ b/src/include/access/gist_private.h
@@ -549,8 +549,6 @@ extern void gistSplitByKey(Relation r, Page page, IndexTuple *itup,
/* gistbuild.c */
extern IndexBuildResult *gistbuild(Relation heap, Relation index,
struct IndexInfo *indexInfo);
-extern void gistValidateBufferingOption(const char *value);
-
/* gistbuildbuffers.c */
extern GISTBuildBuffers *gistInitBuildBuffers(int pagesPerBuffer, int levelStep,
int maxLevel);