Re: Covering GiST indexes

Поиск
Список
Период
Сортировка
От Andreas Karlsson
Тема Re: Covering GiST indexes
Дата
Msg-id e21a2957-2563-77b8-c332-619b32b4b65b@proxel.se
обсуждение исходный текст
Ответ на Re: Covering GiST indexes  (Andrey Borodin <x4mmm@yandex-team.ru>)
Ответы Re: Covering GiST indexes  (Andreas Karlsson <andreas@proxel.se>)
Re: Covering GiST indexes  (Andrey Borodin <x4mmm@yandex-team.ru>)
Список pgsql-hackers
Thanks for the new version of the patch. Based on my knowledge of PG 
this is starting to look good, and I have only three small comments below.

I am not 100% a fan of truncTupdesc, but as long as it is well commented 
I think that it is fine.

= Review

* I think it is worth writing a short comment when you create 
truncTupdesc about why this is done.

* Very minor thing: the diff below is pointless churn on a line not 
touched by the patch.

-                        values, isnull, true /* size is currently bogus 
*/ );
+                        values, isnull, true /* size is currently bogus 
*/);

* Another very minor thing: The diff below from gistFormTuple() should 
probably be consistent about brackets.

+           if (isnull[i])
+               compatt[i] = (Datum) 0;
+           else
+           {
+               compatt[i] = attdata[i];
+           }

Andreas


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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: ATTACH/DETACH PARTITION CONCURRENTLY
Следующее
От: Andreas Karlsson
Дата:
Сообщение: Re: Covering GiST indexes