How to disable one query in Postgres for specified (partioned) table

202 Views Asked by At
SELECT COUNT(*) as count FROM "public"."views";

This query executes every time by TablePlus client when I open a partitioned table with many partitions and processed too long time.

How I can disable the execution of this query on this table?

0

There are 0 best solutions below