diff options
author | Etsuro Fujita | 2022-07-07 07:25:00 +0000 |
---|---|---|
committer | Etsuro Fujita | 2022-07-07 07:25:00 +0000 |
commit | 82699edbfe75534b3b6f6f4321339a432b7b8ff2 (patch) | |
tree | dda7e7a2edd8da596aba437284fb938960cd9324 | |
parent | d63d957e330c611f7a8c0ed02e4407f40f975026 (diff) |
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 061ffaf329..cffb6f8310 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; |