RE: Allow logical replication to copy tables in binary format

Поиск
Список
Период
Сортировка
От Hayato Kuroda (Fujitsu)
Тема RE: Allow logical replication to copy tables in binary format
Дата
Msg-id TYAPR01MB5866657CFB28FFC1D552B97AF5809@TYAPR01MB5866.jpnprd01.prod.outlook.com
обсуждение исходный текст
Ответ на Re: Allow logical replication to copy tables in binary format  (Melih Mutlu <m.melihmutlu@gmail.com>)
Список pgsql-hackers
Dear Melih,

Thank you for updating the patch.
I checked your added description about initial data sync and I think it's OK.

Few minor comments:

01. copy_table

```
+    List        *options = NIL;
```

I found a unnecessary blank just after "List". You can remove it and align definition.

02. copy_table

```
+        options = lappend(options, makeDefElem("format", (Node *) makeString("binary"), -1));
```

The line seems to exceed 80 characters. How do you think to change like following?

```
        options = lappend(options,
                          makeDefElem("format",
                                      (Node *) makeString("binary"), -1));
```

Best Regards,
Hayato Kuroda
FUJITSU LIMITED


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

Предыдущее
От: Amit Kapila
Дата:
Сообщение: Re: logical decoding and replication of sequences, take 2
Следующее
От: Amit Kapila
Дата:
Сообщение: Re: Initial Schema Sync for Logical Replication