RE: Parallel copy

Поиск
Список
Период
Сортировка
От Hou, Zhijie
Тема RE: Parallel copy
Дата
Msg-id e5e4991a175c4778b0574d5bbc071848@G08CNEXMBPEKD05.g08.fujitsu.local
обсуждение исходный текст
Ответ на Re: Parallel copy  (Amit Kapila <amit.kapila16@gmail.com>)
Ответы Re: Parallel copy  (Amit Kapila <amit.kapila16@gmail.com>)
Список pgsql-hackers
Hi Vignesh,

After having a look over the patch,
I have some suggestions for 
0003-Allow-copy-from-command-to-process-data-from-file.patch.

1.

+static uint32
+EstimateCstateSize(ParallelContext *pcxt, CopyState cstate, List *attnamelist,
+                   char **whereClauseStr, char **rangeTableStr,
+                   char **attnameListStr, char **notnullListStr,
+                   char **nullListStr, char **convertListStr)
+{
+    uint32        strsize = MAXALIGN(sizeof(SerializedParallelCopyState));
+
+    strsize += EstimateStringSize(cstate->null_print);
+    strsize += EstimateStringSize(cstate->delim);
+    strsize += EstimateStringSize(cstate->quote);
+    strsize += EstimateStringSize(cstate->escape);


It use function EstimateStringSize to get the strlen of null_print, delim, quote and escape.
But the length of null_print seems has been stored in null_print_len.
And delim/quote/escape must be 1 byte, so I think call strlen again seems unnecessary.

How about  " strsize += sizeof(uint32) + cstate->null_print_len + 1"

2.
+    strsize += EstimateNodeSize(cstate->whereClause, whereClauseStr);

+    copiedsize += CopyStringToSharedMemory(cstate, whereClauseStr,
+                                           shmptr + copiedsize);

Some string length is counted for two times.
The ' whereClauseStr ' has call strlen in EstimateNodeSize once and call strlen in CopyStringToSharedMemory again.
I don't know wheather it's worth to refacor the code to avoid duplicate strlen . what do you think ?

Best regards,
houzj









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

Предыдущее
От: Justin Pryzby
Дата:
Сообщение: pg_restore error message during ENOSPC with largeobj
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pg_restore error message during ENOSPC with largeobj