diff options
author | Fujii Masao <fujii@postgresql.org> | 2017-02-22 02:49:42 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2017-02-22 02:49:42 +0900 |
commit | d36537008a8d53853d2fda49913cb54fa6e28f94 (patch) | |
tree | adf767372cde70f33ba17c826ef3823dfa206bd4 /src | |
parent | 7248099c169b40b8f70cdaf8e12d0deaab9b16e2 (diff) | |
download | postgresql-d36537008a8d53853d2fda49913cb54fa6e28f94.tar.gz postgresql-d36537008a8d53853d2fda49913cb54fa6e28f94.zip |
Remove confusing comment about unsupported feature.
The initial table synchronization feature has not been supported yet,
but there was the confusing header comment about it in logical/worker.c.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/logical/worker.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c index 0b19feca401..563886b7b50 100644 --- a/src/backend/replication/logical/worker.c +++ b/src/backend/replication/logical/worker.c @@ -15,9 +15,6 @@ * launcher for every enabled subscription in a database. It uses * walsender protocol to communicate with publisher. * - * The apply worker may spawn additional workers (sync) for initial data - * synchronization of tables. - * * This module includes server facing code and shares libpqwalreceiver * module with walreceiver for providing the libpq specific functionality. * |