From d5ad0e19d16b66f18b5be87d30dacc8204c238ce Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 1 Jul 2018 14:06:40 +0200 Subject: Fix libpq example programs When these programs call pg_catalog.set_config, they need to check for PGRES_TUPLES_OK instead of PGRES_COMMAND_OK. Fix for 5770172cb0c9df9e6ce27c507b449557e5b45124. Reported-by: Ideriha, Takeshi --- src/test/examples/testlo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/examples/testlo.c') diff --git a/src/test/examples/testlo.c b/src/test/examples/testlo.c index 8a65f897cd7..cba115a3abf 100644 --- a/src/test/examples/testlo.c +++ b/src/test/examples/testlo.c @@ -235,7 +235,7 @@ main(int argc, char **argv) /* Set always-secure search path, so malicous users can't take control. */ res = PQexec(conn, "SELECT pg_catalog.set_config('search_path', '', false)"); - if (PQresultStatus(res) != PGRES_COMMAND_OK) + if (PQresultStatus(res) != PGRES_TUPLES_OK) { fprintf(stderr, "SET failed: %s", PQerrorMessage(conn)); PQclear(res); -- cgit v1.2.3