diff options
author | Fujii Masao | 2024-11-19 17:00:50 +0000 |
---|---|---|
committer | Fujii Masao | 2024-11-19 17:00:50 +0000 |
commit | c166454496876818216e222890ab1ae788551c42 (patch) | |
tree | 9f4dad53c3d90270de39edd797bf34c246d20625 /doc/src/sgml/func.sgml | |
parent | a3699daea2026de324ed7cc7115c36d3499010d3 (diff) |
Improve error message for database object stats manipulation functions.
Previously, database object statistics manipulation functions like
pg_set_relation_stats() reported unclear error and hint messages
when executed during recovery. These messages were "internal",
making it difficult for users to understand the issue:
ERROR: cannot acquire lock mode ShareUpdateExclusiveLock on database objects while recovery is in progress
HINT: Only RowExclusiveLock or less can be acquired on database objects during recovery.
This commit updates the error handling so that, if these functions
are called during recovery, they produce clearer messages:
ERROR: recovery is in progress
HINT: Statistics cannot be modified during recovery.
The related documentation has also been updated to explicitly
clarify that these functions are not available during recovery.
Author: Fujii Masao
Reviewed-by: Heikki Linnakangas, Maxim Orlov
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src/sgml/func.sgml')
-rw-r--r-- | doc/src/sgml/func.sgml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 73979f20fff..1a0b85bb4d7 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -30029,6 +30029,7 @@ postgres=# SELECT '0/0'::pg_lsn + pd.segment_number * ps.setting::int + :offset <para> <xref linkend="functions-admin-statsmod"/> lists functions used to manipulate statistics. + These functions cannot be executed during recovery. <warning> <para> Changes made by these statistics manipulation functions are likely to be |