From 3edaf29fa5e0d4fd6419c7eb73fd6df5b0406789 Mon Sep 17 00:00:00 2001 From: Amit Kapila Date: Tue, 18 Nov 2025 03:58:55 +0000 Subject: Rename two columns in pg_stat_subscription_stats. This patch renames the sync_error_count column to sync_table_error_count in the pg_stat_subscription_stats view. The new name makes the purpose explicit now that a separate column exists to track sequence synchronization errors. Additionally, the column seq_sync_error_count is renamed to sync_seq_error_count to maintain a consistent naming pattern, making it easier for users to group, and query synchronization related counters. Author: Vignesh C Reviewed-by: Peter Smith Reviewed-by: Chao Li Discussion: https://postgr.es/m/CALDaNm3WwJmz=-4ybTkhniB-Nf3qmFG9Zx1uKjyLLoPF5NYYXA@mail.gmail.com --- doc/src/sgml/monitoring.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index 7b9fa20df9e..436ef0e8bd0 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -2195,7 +2195,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage - seq_sync_error_count bigint + sync_seq_error_count bigint Number of times an error occurred in the sequence synchronization @@ -2206,7 +2206,7 @@ description | Waiting for a newly initialized WAL file to reach durable storage - sync_error_count bigint + sync_table_error_count bigint Number of times an error occurred during the initial table -- cgit v1.2.3