Commit 9cb36981 authored by Heikki Linnakangas's avatar Heikki Linnakangas

Add missing newline to debug-message.

Michael Paquier
parent e98d635d
...@@ -212,7 +212,7 @@ receiveFileChunks(const char *sql) ...@@ -212,7 +212,7 @@ receiveFileChunks(const char *sql)
if (PQsendQueryParams(conn, sql, 0, NULL, NULL, NULL, NULL, 1) != 1) if (PQsendQueryParams(conn, sql, 0, NULL, NULL, NULL, NULL, 1) != 1)
pg_fatal("could not send query: %s", PQerrorMessage(conn)); pg_fatal("could not send query: %s", PQerrorMessage(conn));
pg_log(PG_DEBUG, "getting file chunks"); pg_log(PG_DEBUG, "getting file chunks\n");
if (PQsetSingleRowMode(conn) != 1) if (PQsetSingleRowMode(conn) != 1)
pg_fatal("could not set libpq connection to single row mode\n"); pg_fatal("could not set libpq connection to single row mode\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment