Re: Finer Extension dependencies

Поиск
Список
Период
Сортировка
От Dimitri Fontaine
Тема Re: Finer Extension dependencies
Дата
Msg-id m2ty1f5b5e.fsf@2ndQuadrant.fr
обсуждение исходный текст
Ответ на Re: Finer Extension dependencies  (Alvaro Herrera <alvherre@commandprompt.com>)
Список pgsql-hackers
Alvaro Herrera <alvherre@commandprompt.com> writes:
> So you still need an index on (oid), one on (extoid), and one on
> (extfeature).

Yes. And the main use case for the index on (extoid) is listing a given
extension's features, that we want to order by their name, then the set
of indexes I've been defining is now:

Indexes:   "pg_extension_feature_name_index" UNIQUE, btree (extfeature)   "pg_extension_feature_oid_index" UNIQUE,
btree(oid)   "pg_extension_feature_extoid_name_index" btree (extoid, extfeature)
 

Regards,
--
Dimitri Fontaine
http://2ndQuadrant.fr     PostgreSQL : Expertise, Formation et Support


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: Finer Extension dependencies
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Refactoring simplify_function (was: Caching constant stable expressions)