Resolve gratuitous tabs in SQL file

This commit is contained in:
Peter Eisentraut 2020-07-17 15:07:54 +02:00
parent 35647ea9d2
commit e7240ccecd

View File

@ -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