Re: lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Daniel Gustafsson
> On 11 Sep 2022, at 23:35, Tom Lane wrote: > > Daniel Gustafsson writes: >> On 11 Sep 2022, at 17:08, Tom Lane wrote: >>> Don't believe so. The HAVE_CRYPTO_LOCK stuff is all obsolete and >>> not compiled if you built against 1.1.0. The only thing left that >>> will happen if you don't call P

Re: lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Tom Lane
Daniel Gustafsson writes: > On 11 Sep 2022, at 17:08, Tom Lane wrote: >> Don't believe so. The HAVE_CRYPTO_LOCK stuff is all obsolete and >> not compiled if you built against 1.1.0. The only thing left that >> will happen if you don't call PQinitOpenSSL is an extra call to >> OPENSSL_init_ssl,

Re: lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Daniel Gustafsson
> On 11 Sep 2022, at 17:08, Tom Lane wrote: > > Sebastien Flaesch writes: >> The PostgreSQL doc says that if the application code is initializing >> OpenSSL, it should tell PostgreSQL libpq client library that OpenSSL >> initialization is already done: >> https://www.postgresql.org/docs/14/lib

Re: [EXT] Re: log_min_messages = warning

2022-09-11 Thread Junwang Zhao
Hi Steve, I happened to see the pg_cron extensions these days, IMHO this is not a bug, pg_cron has two kind of bg workers, one is the launcher and the other is CronBackgroundWorker, the launcher is responsible for scheduling the jobs, and CronBackgroundWorker is the real worker doing the job. See

Re: lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Tom Lane
Sebastien Flaesch writes: > The PostgreSQL doc says that if the application code is initializing OpenSSL, > it should tell PostgreSQL libpq client library that OpenSSL initialization is > already done: > https://www.postgresql.org/docs/14/libpq-ssl.html#LIBPQ-SSL-INITIALIZE > I was wondering if

Re: lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Jeffrey Walton
On Sun, Sep 11, 2022 at 6:55 AM Sebastien Flaesch wrote: > > The PostgreSQL doc says that if the application code is initializing OpenSSL, > it should tell PostgreSQL libpq client library that OpenSSL initialization is > already done: > > https://www.postgresql.org/docs/14/libpq-ssl.html#LIBPQ-S

lippq client library and openssl initialization: PQinitOpenSSL()

2022-09-11 Thread Sebastien Flaesch
Hello! The PostgreSQL doc says that if the application code is initializing OpenSSL, it should tell PostgreSQL libpq client library that OpenSSL initialization is already done: https://www.postgresql.org/docs/14/libpq-ssl.html#LIBPQ-SSL-INITIALIZE I was wondering if this is still true with Ope