mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
Fix bug which prevents repmgrd from starting when the cluster name has
upper case letters.
This commit is contained in:
@@ -1834,7 +1834,7 @@ check_cluster_configuration(PGconn *conn)
|
||||
sqlquery_snprintf(sqlquery,
|
||||
"SELECT oid FROM pg_class "
|
||||
" WHERE oid = '%s.repl_nodes'::regclass ",
|
||||
get_repmgr_schema());
|
||||
get_repmgr_schema_quoted(master_conn));
|
||||
res = PQexec(conn, sqlquery);
|
||||
if (PQresultStatus(res) != PGRES_TUPLES_OK)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user