diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-01-11 11:54:55 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-01-11 11:54:55 +0900 |
commit | 69fb29d1affb525d4c91b4dc5b104a551e61c28d (patch) | |
tree | e62847c4110a8d9d47c724cddf6328f64a8d0ce7 /src/include/access/gist_private.h | |
parent | 3c6fc58209f24b959ee18f5d19ef96403d08f15c (diff) | |
download | postgresql-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.h | 2 |
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); |