Re: Resize numeric column without changing data?

Поиск
Список
Период
Сортировка
От Lukas Eklund
Тема Re: Resize numeric column without changing data?
Дата
Msg-id CAKLATOXh5ajxH0XY=v07jm2GaVQs5+fMuhrgs4_CFcBKsuQC0w@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Resize numeric column without changing data?  (Merlin Moncure <mmoncure@gmail.com>)
Ответы Re: Resize numeric column without changing data?
Re: Resize numeric column without changing data?
Список pgsql-general
On Mon, Apr 9, 2012 at 2:51 PM, Merlin Moncure <mmoncure@gmail.com> wrote:
> On Mon, Apr 9, 2012 at 9:57 AM, Lukas Eklund <lukas@eklund.io> wrote:
>> Is it safe to resize a numeric column using in pg_attribute without
>> altering the table?
>>
>
> One thing that's pretty weird is that dependent view columns keep the
> old typmod.  That might cause some issues with things that depend on
> that value, for example client side tools.  But you can always change
> those as well.
>
> I think this might work because the numeric storage doesn't change for
> this case.  But it's still quite dangerous and avoiding view
> re-recreation is a pretty weak justification to go be updating system
> catalogs.  You'd be better off spending some time developing a script
> to recreate views. The only reason why I would personally be
> considering this would be to avoid issues stemming from having to take
> out a lock on the table and I would be testing very, very carefully if
> I did so.
>
> merlin

Ah. I must have not noticed that the typmod for views is not inherited
automatically. I'm okay with developing a script to recreate the 15 or
so views the depend on that table. What I'm trying to avoid is locking
that table for a substantial amount of time. Thanks for the advice!

Lukas

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

Предыдущее
От: John R Pierce
Дата:
Сообщение: Re: Help needed to mount a dmp file
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: Resize numeric column without changing data?