> 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
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,
> 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
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
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
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
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