Re: Triggers on columns
От | Itagaki Takahiro |
---|---|
Тема | Re: Triggers on columns |
Дата | |
Msg-id | 20091001101218.9C2A.52131E4D@oss.ntt.co.jp обсуждение исходный текст |
Ответ на | Re: Triggers on columns (Itagaki Takahiro <itagaki.takahiro@oss.ntt.co.jp>) |
Ответы |
Re: Triggers on columns
|
Список | pgsql-hackers |
> Peter Eisentraut <peter_e@gmx.net> wrote: > > If you want a "pretty" option on pg_get_triggerdef(), you could nowadays > > also implement that via a parameter default value instead of a second > > function. > > OK, I'll rewrite it to use default parameter. I tried to remove pg_get_triggerdef_ext() and add a second argument with default value to pg_get_triggerdef(), but there is a problem. The definition of pg_get_triggerdef will be the following: DATA(insert OID = 1662 ( pg_get_triggerdef PGNSP PGUID12 1 0 0 f f f t f s 2 1 25 "26 16" _null_ _null_ _null_ "({CONST :consttype 16 :consttypmod -1 :constlen 1 :constbyvaltrue :constisnull false :location 41 :constvalue 1 [ 0 0 0 0 0 0 0 0 ]})" pg_get_triggerdef _null_ _null__null_ )); The problem is in :constvalue part; It will be ":constvalue 1 [ 0 0 0 0 0 0 0 0 ]" on 64bit platform, but ":constvalue 1 [ 0 0 0 0 ]" on 32bit platform. I think we should not use default values in functions listed on pg_proc.h, so the previous patch is better than default value version. Regards, --- ITAGAKI Takahiro NTT Open Source Software Center
В списке pgsql-hackers по дате отправления: