Hi, On 2019-11-05 16:02:51 +0100, Peter Eisentraut wrote: > $node_publisher->stop('fast'); > + > + > +# TODO: https://www.postgresql.org/message-id/flat/a9139c29-7ddd-973b-aa7f-71fed9c38d75%40minerva.info > + > +$node_publisher = get_new_node('publisher3'); > +$node_publisher->init(allows_streaming => 'logical'); > +$node_publisher->start; > + > +$node_subscriber = get_new_node('subscriber3'); > +$node_subscriber->init(allows_streaming => 'logical'); > +$node_subscriber->start; Do we really have to create a new subscriber for this test? The creation of one isn't free. Nor is the amount of test code duplication neglegible. Greetings, Andres Freund