Skip to content

Commit

Permalink
Merge pull request #6176 from EnterpriseDB/quick-fix-jpe442
Browse files Browse the repository at this point in the history
Added milliseconds to description of double precision types in 5.6 docs for new commit scope statistics views
  • Loading branch information
djw-m authored Oct 23, 2024
2 parents efdd057 + ed0359b commit 5fbed4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions product_docs/docs/pgd/5.6/reference/catalogs-visible.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -868,10 +868,10 @@ A view containing statistics for each commit scope.
| ncalls | bigint | The number of times the commit scope was used
| ncommits | bigint | The number of successful commits were made with the commit scope
| naborts | bigint | The number of times the commit scope used was eventually aborted
| total_commit_time | double precision | Total time spent committing using the commit scope
| min_commit_time | double precision | Minimum time spent committing using the commit scope
| max_commit_time | double precision | Maximum time spend committing using the commit scope
| mean_commit_time | double precision | Mean time spent committing using the commit scope
| total_commit_time | double precision | Total time spent committing using the commit scope, in milliseconds
| min_commit_time | double precision | Minimum time spent committing using the commit scope, in milliseconds
| max_commit_time | double precision | Maximum time spend committing using the commit scope, in milliseconds
| mean_commit_time | double precision | Mean time spent committing using the commit scope, in milliseconds
| stats_reset | timestamp with time zone | Time at which all statistics in the view were last reset

### `bdr.stat_commit_scope_state`
Expand Down Expand Up @@ -983,7 +983,7 @@ You can reset the stored relation statistics by calling
| nspname | name | Name of the relation's schema |
| relname | name | Name of the relation |
| relid | oid | OID of the relation |
| total_time | double precision | Total time spent processing replication for the relation |
| total_time | double precision | Total time spent processing replication for the relation, in milliseconds |
| ninsert | bigint | Number of inserts replicated for the relation |
| nupdate | bigint | Number of updates replicated for the relation |
| ndelete | bigint | Number of deletes replicated for the relation |
Expand Down

1 comment on commit 5fbed4d

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.