is_view seems unnecessarily slow

Поиск
Список
Период
Сортировка
От Tom Lane
Тема is_view seems unnecessarily slow
Дата
Msg-id 18276.978812691@sss.pgh.pa.us
обсуждение исходный текст
Ответы Re: is_view seems unnecessarily slow  (Jan Wieck <janwieck@Yahoo.com>)
Список pgsql-hackers
backend/commands/command.c has a routine is_view() that tests for
view-ness by scanning pg_rewrite (all of it) to see if the given
relation has any ON SELECT rules.

This is only used to disallow AlterTableAddConstraint and
LockTableCommand on views.  While I don't care much about the
performance of AlterTableAddConstraint, it does bug me that this
might slow down LOCK TABLE a good deal.

Any objection to replacing this routine by a test for relkind = VIEW?
        regards, tom lane


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Open documentation items
Следующее
От: Patrick Welche
Дата:
Сообщение: global/pg_database ?