Commit 44f34365 authored by Peter Eisentraut's avatar Peter Eisentraut

Resolve gratuitous tabs in SQL file

parent 01160a3d
...@@ -1084,10 +1084,10 @@ CREATE VIEW pg_stat_progress_basebackup AS ...@@ -1084,10 +1084,10 @@ CREATE VIEW pg_stat_progress_basebackup AS
WHEN 4 THEN 'waiting for wal archiving to finish' WHEN 4 THEN 'waiting for wal archiving to finish'
WHEN 5 THEN 'transferring wal files' WHEN 5 THEN 'transferring wal files'
END AS phase, END AS phase,
CASE S.param2 WHEN -1 THEN NULL ELSE S.param2 END AS backup_total, CASE S.param2 WHEN -1 THEN NULL ELSE S.param2 END AS backup_total,
S.param3 AS backup_streamed, S.param3 AS backup_streamed,
S.param4 AS tablespaces_total, S.param4 AS tablespaces_total,
S.param5 AS tablespaces_streamed S.param5 AS tablespaces_streamed
FROM pg_stat_get_progress_info('BASEBACKUP') AS S; FROM pg_stat_get_progress_info('BASEBACKUP') AS S;
CREATE VIEW pg_user_mappings AS CREATE VIEW pg_user_mappings AS
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment