Whenever I start Postgresql DB engine, I have almost 7-8 queries running in the background SET extra_float_digits = 3
SET extra_float_digits = 3
I am not sure why these are running al
in my option you can end this connections with a pg-command. For example:
SELECT pg_terminate_backend(t.pid) FROM (SELECT pid FROM pg_stat_activity WHERE state = 'idle' AND query like '%float%' AND state_change<(now() - interval '1 hour')) AS t;