summaryrefslogtreecommitdiff
path: root/src/test/isolation/isolationtester.c
diff options
context:
space:
mode:
authorMichael Paquier2018-12-03 05:21:52 +0000
committerMichael Paquier2018-12-03 05:21:52 +0000
commitee2b37ae044f34851baba69e9ba737077326414e (patch)
tree7a1100b30707d054d2290f67241a1266495d8151 /src/test/isolation/isolationtester.c
parentd3c09b9b1307e022883801000ae36bcb5eef71e8 (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.c2
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)