1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

Suppress various new compiler warnings.

Compilers that don't understand that elog(ERROR) doesn't return
issued warnings here.  In the cases in libpq_pipeline.c, we were
not exactly helping things by failing to mark pg_fatal() as noreturn.

Per buildfarm.
This commit is contained in:
Tom Lane
2021-03-21 11:50:43 -04:00
parent 96ae658e62
commit 9fb9691a88
4 changed files with 10 additions and 2 deletions

View File

@@ -60,6 +60,7 @@ exit_nicely(PGconn *conn)
*/
#define pg_fatal(...) pg_fatal_impl(__LINE__, __VA_ARGS__)
static void
pg_attribute_noreturn()
pg_fatal_impl(int line, const char *fmt,...)
{
va_list args;
@@ -570,6 +571,7 @@ test_pipelined_insert(PGconn *conn, int n_rows)
default:
pg_fatal("invalid state");
sql = NULL; /* keep compiler quiet */
}
pg_debug("sending: %s\n", sql);
@@ -679,8 +681,8 @@ test_pipelined_insert(PGconn *conn, int n_rows)
break;
case BI_DONE:
/* unreachable */
description = "";
abort();
pg_fatal("unreachable state");
cmdtag = NULL; /* keep compiler quiet */
}
if (PQresultStatus(res) != status)