Re: Get table catalog from pg_indexes

Поиск
Список
Период
Сортировка
От Erik Wienhold
Тема Re: Get table catalog from pg_indexes
Дата
Msg-id 1113989301.734580.1669571975787@office.mailbox.org
обсуждение исходный текст
Ответ на Get table catalog from pg_indexes  (Igor Korot <ikorot01@gmail.com>)
Ответы Re: Get table catalog from pg_indexes  (Igor Korot <ikorot01@gmail.com>)
Список pgsql-general
> On 27/11/2022 18:22 CET Igor Korot <ikorot01@gmail.com> wrote:
>
> Table pg_indexes does not contain a field for a catalog.
>
> So how do I get that?
>
> SELECT 1 FROM pg_indexes WHERE indexname = $1 AND tablename = $2 AND
> schemaname = $3

Use SELECT current_database() if you need to know the catalog.
pg_indexes only covers the current database[1].

[1] https://www.postgresql.org/docs/current/view-pg-indexes.html

--
Erik



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

Предыдущее
От: Igor Korot
Дата:
Сообщение: Get table catalog from pg_indexes
Следующее
От: Igor Korot
Дата:
Сообщение: Re: Get table catalog from pg_indexes