mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Report NULL as total backup size if it's not estimated.
Previously 0 was reported in pg_stat_progress_basebackup.total_backup if the total backup size was not estimated. Per discussion, our consensus is that NULL is better choise as the value in total_backup in that case. So this commit makes pg_stat_progress_basebackup view report NULL in total_backup column if the estimation is disabled. Bump catversion. Author: Fujii Masao Reviewed-by: Amit Langote, Magnus Hagander, Alvaro Herrera Discussion: https://postgr.es/m/CABUevExnhOD89zBDuPvfAAh243RzNpwCPEWNLtMYpKHMB8gbAQ@mail.gmail.com
This commit is contained in:
@@ -4403,7 +4403,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
|
||||
total size. If the estimation is disabled in
|
||||
<application>pg_basebackup</application>
|
||||
(i.e., <literal>--no-estimate-size</literal> option is specified),
|
||||
this is <literal>0</literal>.
|
||||
this is <literal>NULL</literal>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
|
@@ -546,7 +546,7 @@ PostgreSQL documentation
|
||||
amount of backup data that will be streamed, resulting in the
|
||||
<literal>backup_total</literal> column in the
|
||||
<structname>pg_stat_progress_basebackup</structname>
|
||||
to be <literal>0</literal>.
|
||||
to be <literal>NULL</literal>.
|
||||
</para>
|
||||
<para>
|
||||
Without this option, the backup will start by enumerating
|
||||
|
Reference in New Issue
Block a user