Re: pg_get_triggerdef in pg_dump

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg_get_triggerdef in pg_dump
Дата
Msg-id 5766.1055989997@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: pg_get_triggerdef in pg_dump  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Ответы Re: pg_get_triggerdef in pg_dump  (Andreas Pflug <Andreas.Pflug@web.de>)
Re: pg_get_triggerdef in pg_dump  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
"Christopher Kings-Lynne" <chriskl@familyhealth.com.au> writes:
>> There might be other cases of legal direct change of system catalog 
>> entries, e,g. varchar to text, if they all are only names for internally 
>> identical data structures. Can you tell which datatypes may be legally 
>> interchanged?

> Yes, you can check if they're binary compatible from the pg_cast table....

But nearly all of the interesting cases require you to understand the
type's interpretation of typmod, and you can't learn that from a table.
How many cases are there where blindly looking for a binary-compatible
cast in pg_cast will really do you much good?  AFAICS you'd have to set
atttypmod to -1 if you change atttypid without knowing very specifically
what you are changing from and to.
        regards, tom lane


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: Two weeks to feature freeze
Следующее
От: Tom Lane
Дата:
Сообщение: Re: src/bin/scripts seems a bit of a misnomer now