summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-07-17 15:07:54 +0200
committerPeter Eisentraut <peter@eisentraut.org>2020-07-17 15:08:43 +0200
commite7240ccecd3001892880fd076a7ffd107b533afc (patch)
treea51b82d8ebae5c44942d1d94f41f0ab1ea36e63a /src
parent35647ea9d214c8745922cb757424f11d791ed733 (diff)
Resolve gratuitous tabs in SQL file
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/system_views.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/catalog/system_views.sql b/src/backend/catalog/system_views.sql
index 76154a8d5f2..51d738cc42c 100644
--- a/src/backend/catalog/system_views.sql
+++ b/src/backend/catalog/system_views.sql
@@ -1084,10 +1084,10 @@ CREATE VIEW pg_stat_progress_basebackup AS
WHEN 4 THEN 'waiting for wal archiving to finish'
WHEN 5 THEN 'transferring wal files'
END AS phase,
- CASE S.param2 WHEN -1 THEN NULL ELSE S.param2 END AS backup_total,
- S.param3 AS backup_streamed,
- S.param4 AS tablespaces_total,
- S.param5 AS tablespaces_streamed
+ CASE S.param2 WHEN -1 THEN NULL ELSE S.param2 END AS backup_total,
+ S.param3 AS backup_streamed,
+ S.param4 AS tablespaces_total,
+ S.param5 AS tablespaces_streamed
FROM pg_stat_get_progress_info('BASEBACKUP') AS S;
CREATE VIEW pg_user_mappings AS