diff options
author | Michael Paquier | 2018-12-03 05:21:52 +0000 |
---|---|---|
committer | Michael Paquier | 2018-12-03 05:21:52 +0000 |
commit | ee2b37ae044f34851baba69e9ba737077326414e (patch) | |
tree | 7a1100b30707d054d2290f67241a1266495d8151 /src/test/isolation/isolationtester.c | |
parent | d3c09b9b1307e022883801000ae36bcb5eef71e8 (diff) |
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/[email protected]
Diffstat (limited to 'src/test/isolation/isolationtester.c')
-rw-r--r-- | src/test/isolation/isolationtester.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/isolation/isolationtester.c b/src/test/isolation/isolationtester.c index e2638553f62..7df67da333c 100644 --- a/src/test/isolation/isolationtester.c +++ b/src/test/isolation/isolationtester.c @@ -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) |