is_array_type vs type_is_array

Поиск
Список
Период
Сортировка
От Jeremy Drake
Тема is_array_type vs type_is_array
Дата
Msg-id Pine.BSO.4.64.0706062203100.8025@resin.csoft.net
обсуждение исходный текст
Ответы Re: is_array_type vs type_is_array  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Was there some change in functionality reason for renaming is_array_type
to type_is_array?  It broke compilation of fulldisjunctions, which I build
and run regression tests on in my sandbox to keep it getting too horribly
broken with respect to current HEAD.  I got it to build and pass its
regression tests by adding this:

+ #if !defined(is_array_type) && defined(type_is_array)
+ #define is_array_type(x) type_is_array(x)
+ #endif

to the beginning of the one file which uses is_array_type.  Is this
reasonable to send back to the fulldisjunctions maintainer, or is there
some subtle change that prompted the name change to make uses of this
function immediately apparent?


-- 
Ducharme's Axiom:If you view your problem closely enough you will recognizeyourself as part of the problem.


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

Предыдущее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: To all the pgsql developers..Have a look at the operators proposed by me in my researc
Следующее
От: Tom Lane
Дата:
Сообщение: Re: is_array_type vs type_is_array