Add missing newline to debug-message.

Michael Paquier
This commit is contained in:
Heikki Linnakangas 2015-06-23 15:49:28 +03:00
parent e98d635d5d
commit 9cb36981fb
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ receiveFileChunks(const char *sql)
if (PQsendQueryParams(conn, sql, 0, NULL, NULL, NULL, NULL, 1) != 1)
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)
pg_fatal("could not set libpq connection to single row mode\n");