select open change scope Open full search

PG.CENTER connects PostgreSQL documentation, reference, and ecosystem knowledge. Maintained by Pigsty.

SYSTEM CATALOGS / STATISTICS VIEWS

pg_stat_subscription_stats

Read PG 18 manual ↗

The pg_stat_subscription_stats view will contain one row per subscription.

Kind
Statistics views
Columns in this snapshot
12
Definition source
English manual

Columns 12

ColumnTypeDescription / reference
subidoidOID of the subscription
subnamenameName of the subscription
apply_error_countbigintNumber of times an error occurred while applying changes. Note that any conflict resulting in an apply error will be counted in both apply_error_count and the corresponding conflict count (e.g., confl_*).
sync_error_countbigintNumber of times an error occurred during the initial table synchronization
confl_insert_existsbigintNumber of times a row insertion violated a NOT DEFERRABLE unique constraint during the application of changes. See insert_exists for details about this conflict.
confl_update_origin_differsbigintNumber of times an update was applied to a row that had been previously modified by another source during the application of changes. See update_origin_differs for details about this conflict.
confl_update_existsbigintNumber of times that an updated row value violated a NOT DEFERRABLE unique constraint during the application of changes. See update_exists for details about this conflict.
confl_update_missingbigintNumber of times the tuple to be updated was not found during the application of changes. See update_missing for details about this conflict.
confl_delete_origin_differsbigintNumber of times a delete operation was applied to row that had been previously modified by another source during the application of changes. See delete_origin_differs for details about this conflict.
confl_delete_missingbigintNumber of times the tuple to be deleted was not found during the application of changes. See delete_missing for details about this conflict.
confl_multiple_unique_conflictsbigintNumber of times a row insertion or an updated row values violated multiple NOT DEFERRABLE unique constraints during the application of changes. See multiple_unique_conflicts for details about this conflict.
stats_resettimestamp with time zoneTime at which these statistics were last reset
Column history across versions
Version history 3
  1. PG 18 → 19changed
  2. PG 17 → 18changed
  3. PG 14 → 15added

Definition snapshot: english-manuals:221f4eee795a1581a38d926eee1… · English manual source