mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Add some missing schema qualifications
This does not improve the security and reliability of the touched areas, but it makes the style more consistent. Author: Michael Paquier Reviewed-by- Noah Misch Discussion: https://postgr.es/m/20180309075538.GD9376@paquier.xyz
This commit is contained in:
@ -201,7 +201,7 @@ main(int argc, char **argv)
|
||||
PQclear(res);
|
||||
|
||||
/* Get the backend pid for lock wait checking. */
|
||||
res = PQexec(conns[i], "SELECT pg_backend_pid()");
|
||||
res = PQexec(conns[i], "SELECT pg_catalog.pg_backend_pid()");
|
||||
if (PQresultStatus(res) == PGRES_TUPLES_OK)
|
||||
{
|
||||
if (PQntuples(res) == 1 && PQnfields(res) == 1)
|
||||
|
Reference in New Issue
Block a user