Re: [HACKERS] A suspicious code in pgoutput_startup().

2017-08-21 Thread Yugo Nagata
On Tue, 15 Aug 2017 16:23:35 -0400 Peter Eisentraut wrote: > On 7/27/17 20:52, Yugo Nagata wrote: > > 175 /* Check if we support requested protocol */ > > 176 if (data->protocol_version != LOGICALREP_PROTO_VERSION_NUM) > > 177

Re: [HACKERS] A suspicious code in pgoutput_startup().

2017-08-15 Thread Peter Eisentraut
On 7/27/17 20:52, Yugo Nagata wrote: > 175 /* Check if we support requested protocol */ > 176 if (data->protocol_version != LOGICALREP_PROTO_VERSION_NUM) > 177 ereport(ERROR, > 178 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), > 179

[HACKERS] A suspicious code in pgoutput_startup().

2017-07-27 Thread Yugo Nagata
Hi, I found a suspicious code in pgoutput_startup(). 175 /* Check if we support requested protocol */ 176 if (data->protocol_version != LOGICALREP_PROTO_VERSION_NUM) 177 ereport(ERROR, 178 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), 179