]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix incorrect error message in libpq_pipeline
authorMichael Paquier <michael@paquier.xyz>
Fri, 23 Jun 2023 08:50:23 +0000 (17:50 +0900)
committerMichael Paquier <michael@paquier.xyz>
Fri, 23 Jun 2023 08:50:23 +0000 (17:50 +0900)
One of the tests for the pipeline mode with portal description expects a
non-NULL PQgetResult, but used an incorrect error message on failure,
telling that PQgetResult being NULL was the expected result.

Author: Jelte Fennema
Discussion: https://postgr.es/m/CAGECzQTkShHecFF+EZrm94Lbsu2ej569T=bz+PjMbw9Aiioxuw@mail.gmail.com
Backpatch-through: 14

src/test/modules/libpq_pipeline/libpq_pipeline.c

index 27332932a1e75f8789efec607df5275de47b171a..b30a97d28179fa35b92907792e5d70d83aa9f0d6 100644 (file)
@@ -961,7 +961,7 @@ test_prepared(PGconn *conn)
                pg_fatal("pipeline sync failed: %s", PQerrorMessage(conn));
        res = PQgetResult(conn);
        if (res == NULL)
-               pg_fatal("expected NULL result");
+               pg_fatal("PQgetResult returned null");
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
                pg_fatal("expected COMMAND_OK, got %s", PQresStatus(PQresultStatus(res)));