how can i show constraint checks in explain ?

Поиск
Список
Период
Сортировка
От Jonathan Vanasco
Тема how can i show constraint checks in explain ?
Дата
Msg-id 4D038984-BFF1-4010-AE8B-699305904AA6@2xlp.com
обсуждение исходный текст
Ответы Re: how can i show constraint checks in explain ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
I've got a DELETE query that takes ~2 seconds to process

The reasoning is simple -- its doing referential checks, to make sure
that I'm not deleting  a valid fkey , as several tables fkey on that
one.

The issue i'm running into is obvious: this should not take 2
seconds.  anything that fkeys should have that column as an index
already.  very likely, one doesn't because  I messed up when I
created the dable.

However-- explain doesn't pull in the planner's scanning info in
regards to the fkey constraints.  is there any function or argument
that will ?

i'd like to know which tables are getting what must be a sequential
scan and not an index scan, so I can reindex properly.



В списке pgsql-general по дате отправления:

Предыдущее
От: Cesar Alvarez
Дата:
Сообщение: Re: Store Procedures
Следующее
От: "Dany DeBontridder"
Дата:
Сообщение: dump strored function