Merge branch 'bwtakacy-change-log-level'

This commit is contained in:
Josh Kupershmidt 2015-05-01 15:27:36 -04:00
commit dec54f05b0

View File

@ -1579,7 +1579,7 @@ static bool advisory_lock(PGconn *conn, const char *relid)
elog(ERROR, "%s", PQerrorMessage(connection)); elog(ERROR, "%s", PQerrorMessage(connection));
} }
else if (strcmp(getstr(res, 0, 0), "t") != 0) { else if (strcmp(getstr(res, 0, 0), "t") != 0) {
elog(WARNING, "Another pg_repack command may be running on the table. Please try again later."); elog(ERROR, "Another pg_repack command may be running on the table. Please try again later.");
} }
else { else {
ret = true; ret = true;