I have a postgresql DB with > 3 million rows in two tables.
Something slows down the whole performance, so I analyzed a bit with the Ubuntu command pg_top.
I found out there is always a query like this:
SELECT 1 FROM <tablename>;
Looks like a connection test statement from the java.sql.Connection, right?
When I enter the same command in the postgres command, it takes 4 seconds! Indexes are all there, I checked that.
Question: How can I change the test statement used by the Connection object?
Thanks a lot!