pgsql: postgres_fdw: Mark statistics import helpers as static - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: postgres_fdw: Mark statistics import helpers as static
Date
Msg-id E1wi9YK-000RMZ-14@gemulon.postgresql.org
Whole thread
List pgsql-committers
postgres_fdw: Mark statistics import helpers as static

The set_*_arg helper functions in postgres_fdw.c are declared
static, but their definitions omitted the static keyword. Add it to
make their file-local scope explicit and keep the declarations and
definitions consistent.

Also fix a couple of nearby comment typos.

This is a followup to commit 54cd6fc8317.

Author: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: Etsuro Fujita <etsuro.fujita@gmail.com>
Discussion: https://postgr.es/m/CAHGQGwGjcQ4SwHMUQ9P8UYQ7iLKL1QE3uLSdONToQ1MrzpUUoQ@mail.gmail.com
Backpatch-through: 19

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/701f021b680ec33a799022d31b574fbcd618a40f

Modified Files
--------------
contrib/postgres_fdw/postgres_fdw.c      | 12 ++++++------
src/backend/statistics/attribute_stats.c |  2 +-
src/backend/statistics/relation_stats.c  |  2 +-
3 files changed, 8 insertions(+), 8 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Forbid FOR PORTION OF on views with INSTEAD OF triggers
Next
From: Fujii Masao
Date:
Subject: pgsql: postgres_fdw: Mark statistics import helpers as static