diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-07-07 16:25:00 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-07-07 16:25:00 +0900 |
commit | 54bc816810bca2041bee4997efbe67e63d927bcc (patch) | |
tree | 40287064469dd2f0d50208c7aa7795021a750823 | |
parent | 2d94d090e4dc830bf2f1c342720330d092c443f9 (diff) | |
download | postgresql-54bc816810bca2041bee4997efbe67e63d927bcc.tar.gz postgresql-54bc816810bca2041bee4997efbe67e63d927bcc.zip |
postgres_fdw: Fix grammar.
Oversight in commit 4036bcbbb; back-patch to v15 where that appeared.
-rw-r--r-- | contrib/postgres_fdw/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/postgres_fdw/connection.c b/contrib/postgres_fdw/connection.c index 061ffaf329e..cffb6f83107 100644 --- a/contrib/postgres_fdw/connection.c +++ b/contrib/postgres_fdw/connection.c @@ -325,7 +325,7 @@ make_new_connection(ConnCacheEntry *entry, UserMapping *user) * default. * * Note: it's enough to determine these only when making a new connection - * because these settings for it are changed, it will be closed and + * because if these settings for it are changed, it will be closed and * re-made later. */ entry->keep_connections = true; |