From: | Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com> |
---|---|
To: | Petr Jelinek <petr(at)2ndquadrant(dot)com> |
Cc: | Craig Ringer <craig(at)2ndquadrant(dot)com>, Simon Riggs <simon(at)2ndquadrant(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>, Erik Rijkers <er(at)xs4all(dot)nl>, Steve Singer <steve(at)ssinger(dot)info> |
Subject: | Re: Logical Replication WIP |
Date: | 2016-09-10 10:35:22 |
Message-ID: | 3042dda1-0ff8-bb7c-991f-d14f9a10dc95@2ndquadrant.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Review of 0004-Make-libpqwalreceiver-reentrant.patch:
This looks like a good change.
typo: _PG_walreceirver_conn_init
For libpqrcv_create_slot(), slotname should be const char *.
Similarly, for slotname in libpqrcv_startstreaming*() and conninfo in
libpqrcv_connect(). (the latter two pre-existing)
The connection handle should record in libpqrcv_connect() whether a
connection is a logical or physical replication stream. Then that
parameter doesn't have to be passed around later (or at least some
asserts could double-check it).
In libpqrcv_connect(), the new argument connname is actually just the
application name, for which in later patches the subscription name is
passed in. Does this have a deeper meaning, or should we call the
argument appname to avoid introducing another term?
New function libpqrcv_create_slot(): Hardcoded cmd length (hmm, other
functions do that too), should used StringInfo. ereport instead of
elog. No newline at the end of error message, since PQerrorMessage()
already supplies it. Typo "could not crate". Briefly document return
value.
--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
From | Date | Subject | |
---|---|---|---|
Next Message | Craig Ringer | 2016-09-10 10:36:49 | Re: pg_basebackup, pg_receivexlog and data durability (was: silent data loss with ext4 / all current versions) |
Previous Message | Mattia | 2016-09-10 10:18:04 | Allow to_date() and to_timestamp() to accept localized month names |