projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e98d635
)
Add missing newline to debug-message.
author
Heikki Linnakangas
Tue, 23 Jun 2015 12:49:28 +0000
(15:49 +0300)
committer
Heikki Linnakangas
Tue, 23 Jun 2015 12:49:28 +0000
(15:49 +0300)
Michael Paquier
src/bin/pg_rewind/libpq_fetch.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_rewind/libpq_fetch.c
b/src/bin/pg_rewind/libpq_fetch.c
index df71069a9f8fa5c719f4a6ac25da19224997d467..37e515bc98476a0b21b5550725b636fb5bca733b 100644
(file)
--- a/
src/bin/pg_rewind/libpq_fetch.c
+++ b/
src/bin/pg_rewind/libpq_fetch.c
@@
-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");