miniprofiler icon indicating copy to clipboard operation
miniprofiler copied to clipboard

The analyzer being polluted by requests to refresh schema

Open phuongnd08 opened this issue 13 years ago • 0 comments

Many of the sql being logged:

  SELECT COUNT(*)
            FROM pg_class c
            LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
            WHERE c.relkind in ('v','r')
            AND c.relname = $1
            AND n.nspname = ANY (current_schemas(false))

The log of this kind of SQL be more aggressive if I enable ActiveAdmin inside routes.rb This make very tough for me to look at the important sqls (the one that really matters). Any thought?

phuongnd08 avatar Nov 30 '12 10:11 phuongnd08