Re: Bug in SQL/MED?
От | Tom Lane |
---|---|
Тема | Re: Bug in SQL/MED? |
Дата | |
Msg-id | 22695.1309892496@sss.pgh.pa.us обсуждение исходный текст |
Ответ на | Re: Bug in SQL/MED? (Tom Lane <tgl@sss.pgh.pa.us>) |
Ответы |
Re: Bug in SQL/MED?
|
Список | pgsql-hackers |
I wrote: > I think it might be better to keep the convention that an empty options > list is represented by null, and to say that if a validator wants to be > called on such a list, it had better declare itself non-strict. At > least we ought to think about that before redefining the catalog > semantics at this late hour. Another possibility that just occurred to me is to call the validator like this: if (OidIsValid(fdwvalidator)) { Datum valarg = result; /* pass a null options list as an empty array */ if (DatumGetPointer(valarg) == NULL) valarg = construct_empty_array(TEXTOID); OidFunctionCall2(fdwvalidator, valarg, ObjectIdGetDatum(catalogId)); } This would avoid messing with the semantics of empty options lists throughout foreigncmds.c, and also avoid requiring validators to deal with null arguments. regards, tom lane
В списке pgsql-hackers по дате отправления: