Missing reference to pgstat_replslot.c in pgstat.c
Hi hackers,
I think there's a missing reference to pgstat_replslot.c in pgstat.c.
Attached a tiny patch to fix it.
Regards,
Bertrand
Attachments:
v1-0001-mentioning-pgstat_replslot-in-pgstat.patchtext/plain; charset=UTF-8; name=v1-0001-mentioning-pgstat_replslot-in-pgstat.patchDownload
diff --git a/src/backend/utils/activity/pgstat.c b/src/backend/utils/activity/pgstat.c
index ad5cf6fb91..0d9d09c492 100644
--- a/src/backend/utils/activity/pgstat.c
+++ b/src/backend/utils/activity/pgstat.c
@@ -73,6 +73,7 @@
* - pgstat_database.c
* - pgstat_function.c
* - pgstat_relation.c
+ * - pgstat_replslot.c
* - pgstat_slru.c
* - pgstat_subscription.c
* - pgstat_wal.c
On Wed, Jun 22, 2022 at 3:29 PM Drouvot, Bertrand <bdrouvot@amazon.com> wrote:
Hi hackers,
I think there's a missing reference to pgstat_replslot.c in pgstat.c.
Attached a tiny patch to fix it.
+1
Regards,
--
Masahiko Sawada
EDB: https://www.enterprisedb.com/
Hi,
On 2022-06-22 08:29:03 +0200, Drouvot, Bertrand wrote:
I think there's a missing reference to pgstat_replslot.c in pgstat.c.
Indeed...
Attached a tiny patch to fix it.
Thanks. Pushed.
Greetings,
Andres Freund
Hi,
On 6/23/22 2:01 AM, Andres Freund wrote:
Hi,
On 2022-06-22 08:29:03 +0200, Drouvot, Bertrand wrote:
I think there's a missing reference to pgstat_replslot.c in pgstat.c.
Indeed...
Attached a tiny patch to fix it.
Thanks. Pushed.
Thanks!
Bertrand