Björn Darri Sigurðsson

Results 3 comments of Björn Darri Sigurðsson

I'm running into the same issue, can't drop a local development database instance (running in docker) due to the pg_cron scheduler session being active, even after dropping the extension and...

What has been working for me recently is to run both commands together, with auto-commit enabled (I'm doing this via IntelliJ). ```sql SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE application_name ILIKE 'pg_cron...

@desert-dev Are you by any chance using instrumentation when profiling? Instrumentation can really skew these results, especially when it comes to these tiny oft-called functions (such as null checks). JProfiler,...