Re: creating extension including dependencies

Поиск
Список
Период
Сортировка
От Petr Jelinek
Тема Re: creating extension including dependencies
Дата
Msg-id 559E9BC2.7060102@2ndquadrant.com
обсуждение исходный текст
Ответ на Re: creating extension including dependencies  (Andres Freund <andres@anarazel.de>)
Ответы Re: creating extension including dependencies  (Heikki Linnakangas <hlinnaka@iki.fi>)
Список pgsql-hackers
On 2015-07-07 15:41, Andres Freund wrote:
> On 2015-07-07 22:36:29 +0900, Fujii Masao wrote:
>> On Mon, Jun 15, 2015 at 7:50 AM, Petr Jelinek <petr@2ndquadrant.com> wrote:
>>> Hi,
>>>
>>> I am getting tired installing manually required extensions manually. I was
>>> wondering if we might want to add option to CREATE SEQUENCE that would allow
>>> automatic creation of the extensions required by the extension that is being
>>> installed by the user.
>>
>> I'm wondering how much helpful this feature is. Because, even if we can save
>> some steps for CREATE EXTENSION by using the feature, we still need to
>> manually find out, download and install all the extensions that the target
>> extension depends on. So isn't it better to implement the tool like yum, i.e.,
>> which performs all those steps almost automatically, rather than the proposed
>> feature? Maybe it's outside PostgreSQL core.
>
> That doesn't seem to make much sense to me. Something like yum can't
> install everything in all relevant databases. Sure, yum will be used to
> install dependencies between extensions on the filesystem level.
>
> At the minimum I'd like to see that CREATE EXTENSION foo; would install
> install extension 'bar' if foo dependended on 'bar' if CASCADE is
> specified. Right now we always error out saying that the dependency on
> 'bar' is not fullfilled - not particularly helpful.
>

That's what the proposed patch does (with slightly different syntax but 
syntax is something that can be changed easily).

--  Petr Jelinek                  http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training &
Services



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

Предыдущее
От: Pavel Stehule
Дата:
Сообщение: Re: PL/pgSQL, RAISE and error context
Следующее
От: Fujii Masao
Дата:
Сообщение: Re: WAL logging problem in 9.4.3?