diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-02 14:07:54 -0500 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-02 14:07:54 -0500 |
| commit | 1511521a36f99a242f51c3bd0811cfcd53c5e63a (patch) | |
| tree | 4f2a7f477798940717f8bb29b1631fae451b56df /src/backend/access/brin/brin.c | |
| parent | b52cb4690e0752efea440173c4923d76d2126679 (diff) | |
| download | postgresql-1511521a36f99a242f51c3bd0811cfcd53c5e63a.tar.gz | |
Minor cleanup of function declarations for BRIN.
Get rid of PG_FUNCTION_INFO_V1() macros, which are quite inappropriate
for built-in functions (possibly leftovers from testing as a loadable
module?). Also, fix gratuitous inconsistency between SQL-level and
C-level names of the minmax support functions.
Diffstat (limited to 'src/backend/access/brin/brin.c')
| -rw-r--r-- | src/backend/access/brin/brin.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/access/brin/brin.c b/src/backend/access/brin/brin.c index cb645e3d45..15d1f9d2b6 100644 --- a/src/backend/access/brin/brin.c +++ b/src/backend/access/brin/brin.c @@ -60,8 +60,6 @@ typedef struct BrinOpaque BrinDesc *bo_bdesc; } BrinOpaque; -PG_FUNCTION_INFO_V1(brin_summarize_new_values); - static BrinBuildState *initialize_brin_buildstate(Relation idxRel, BrinRevmap *revmap, BlockNumber pagesPerRange); static void terminate_brin_buildstate(BrinBuildState *state); |
