projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9cc9df
)
In pg_upgrade, remove suggestion of setting pg_hba.conf to 'trust', now
author
Bruce Momjian
<
[email protected]
>
Tue, 10 May 2011 14:42:43 +0000
(10:42 -0400)
committer
Bruce Momjian
<
[email protected]
>
Tue, 10 May 2011 14:42:43 +0000
(10:42 -0400)
that we report the libpq connection failure string. Per suggestion from
Robert Haas.
contrib/pg_upgrade/server.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/pg_upgrade/server.c
b/contrib/pg_upgrade/server.c
index 224fc9642e9971c1ad99c2f6903b236826fdbc62..8fce305d2e20fe483b6295f5f668204c4acc613a 100644
(file)
--- a/
contrib/pg_upgrade/server.c
+++ b/
contrib/pg_upgrade/server.c
@@
-193,8
+193,7
@@
start_postmaster(ClusterInfo *cluster)
PQerrorMessage(conn));
if (conn)
PQfinish(conn);
- pg_log(PG_FATAL, "unable to connect to %s postmaster started with the command: %s\n"
- "Perhaps pg_hba.conf was not set to \"trust\".\n",
+ pg_log(PG_FATAL, "unable to connect to %s postmaster started with the command: %s\n",
CLUSTER_NAME(cluster), cmd);
}
PQfinish(conn);