1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-02 09:53:24 +02:00

Fix output of show command

This commit is contained in:
Arthur Zakirov 2017-10-06 11:51:57 +03:00
parent be71f4a8f9
commit 8eda9d444b

View File

@ -226,9 +226,9 @@ show_backup_list(FILE *out, parray *backup_list)
/* if you add new fields here, fix the header */
/* show header */
fputs("===============================================================================================================================\n", out);
fputs(" Instance ID Recovery time Mode WAL Current/Parent TLI Time Data Start LSN Stop LSN Status \n", out);
fputs("===============================================================================================================================\n", out);
fputs("==================================================================================================================================\n", out);
fputs(" Instance ID Recovery time Mode WAL Current/Parent TLI Time Data Start LSN Stop LSN Status\n", out);
fputs("==================================================================================================================================\n", out);
for (i = 0; i < parray_num(backup_list); i++)
{