Re: [COMMITTERS] pgsql: Rewrite strnlen replacement implementation from 8a241792f96.

2017-10-10 Thread Andres Freund
On 2017-10-10 19:15:13 -0400, Tom Lane wrote: > Andres Freund writes: > > Rewrite strnlen replacement implementation from 8a241792f96. > > Hm, did you hand-edit the configure script and then forget to undo it? > Cause what was committed was not right. Yea, that was me testing the fallback :(. I

Re: [COMMITTERS] pgsql: Rewrite strnlen replacement implementation from 8a241792f96.

2017-10-10 Thread Tom Lane
Andres Freund writes: > Rewrite strnlen replacement implementation from 8a241792f96. Hm, did you hand-edit the configure script and then forget to undo it? Cause what was committed was not right. regards, tom lane -- Sent via pgsql-committers mailing list (pgsql-commit

[COMMITTERS] pgsql: Rewrite strnlen replacement implementation from 8a241792f96.

2017-10-10 Thread Andres Freund
Rewrite strnlen replacement implementation from 8a241792f96. The previous placement of the fallback implementation in libpgcommon was problematic, because libpqport functions need strnlen functionality. Move replacement into libpgport. Provide strnlen() under its posix name, instead of pg_strnlen