aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-08-26 17:26:45 -0400
committerPeter Eisentraut <peter_e@gmx.net>2014-08-26 17:26:45 -0400
commit2d759341d97eb863477d6170a84c24ade570f567 (patch)
tree1ee49c7cc5af5572907b1bd058e5ff9566d1a163
parent9522ec3e707a93d25a99e477af76d7b186fe20de (diff)
downloadpostgresql-2d759341d97eb863477d6170a84c24ade570f567.tar.gz
postgresql-2d759341d97eb863477d6170a84c24ade570f567.zip
Fix whitespace
-rw-r--r--contrib/pg_upgrade/info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/pg_upgrade/info.c b/contrib/pg_upgrade/info.c
index 20b017b09c2..a1773aa8e53 100644
--- a/contrib/pg_upgrade/info.c
+++ b/contrib/pg_upgrade/info.c
@@ -332,8 +332,8 @@ get_rel_infos(ClusterInfo *cluster, DbInfo *dbinfo)
* pg_dump only dumps valid indexes; testing indisready is necessary in
* 9.2, and harmless in earlier/later versions.
*/
- " i.indisvalid IS DISTINCT FROM false AND "
- " i.indisready IS DISTINCT FROM false AND "
+ " i.indisvalid IS DISTINCT FROM false AND "
+ " i.indisready IS DISTINCT FROM false AND "
/* exclude possible orphaned temp tables */
" ((n.nspname !~ '^pg_temp_' AND "
" n.nspname !~ '^pg_toast_temp_' AND "
@@ -347,7 +347,7 @@ get_rel_infos(ClusterInfo *cluster, DbInfo *dbinfo)
* We have to gather the TOAST tables in later steps because we
* can't schema-qualify TOAST tables.
*/
- /* get TOAST heap */
+ /* get TOAST heap */
" toast_heap (reloid) AS ( "
" SELECT reltoastrelid "
" FROM regular_heap JOIN pg_catalog.pg_class c "