fix for _copyUnique()

Поиск
Список
Период
Сортировка
От Tatsuo Ishii
Тема fix for _copyUnique()
Дата
Msg-id 199904270959.SAA23781@srapc451.sra.co.jp
обсуждение исходный текст
Список pgsql-hackers
I have commited a fix for _copyUnique(nodes/copyfuncs.c) suggested by
Hiroshi Inoue. It seems obvious for me and passed regression tests.
--
Tatsuo Ishii

*** backend/nodes/copyfuncs.c.orig    Mon Apr 19 16:00:40 1999
--- backend/nodes/copyfuncs.c    Mon Apr 26 13:34:26 1999
***************
*** 514,520 ****      *    copy remainder of node      * ----------------      */
!     if (newnode->uniqueAttr)         newnode->uniqueAttr = pstrdup(from->uniqueAttr);     else
newnode->uniqueAttr= NULL;
 
--- 514,520 ----      *    copy remainder of node      * ----------------      */
!     if (from->uniqueAttr)         newnode->uniqueAttr = pstrdup(from->uniqueAttr);     else
newnode->uniqueAttr= NULL;
 



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

Предыдущее
От: Tatsuo Ishii
Дата:
Сообщение: Re: [HACKERS] numeric data type on 6.5
Следующее
От: Chris Bitmead
Дата:
Сообщение: Re: [HACKERS] It would be nice if this could be fixed...