Missing reference to pgstat_replslot.c in pgstat.c

Started by Drouvot, Bertrandover 3 years ago4 messages
#1Drouvot, Bertrand
bdrouvot@amazon.com
1 attachment(s)

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
#2Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Drouvot, Bertrand (#1)
Re: Missing reference to pgstat_replslot.c in pgstat.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/

#3Andres Freund
andres@anarazel.de
In reply to: Drouvot, Bertrand (#1)
Re: Missing reference to pgstat_replslot.c in pgstat.c

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

#4Drouvot, Bertrand
bdrouvot@amazon.com
In reply to: Andres Freund (#3)
Re: Missing reference to pgstat_replslot.c in pgstat.c

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