[Code Comments]enum COPY_NEW_FE is removed

From: Zhang Mingli <zmlpostgres(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: [Code Comments]enum COPY_NEW_FE is removed
Date: 2022-08-06 11:20:25
Message-ID: aeec12a3-501e-449a-8d25-901c4ff706cf@Spark
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

Enum COPY_NEW_FE is removed in commit 3174d69fb9.

Should use COPY_FRONTEND instead.

Issue exists on 15 and master.

```
typedef struct CopyFromStateData

- StringInfo fe_msgbuf; /* used if copy_src == COPY_NEW_FE */
+ StringInfo fe_msgbuf; /* used if copy_src == COPY_FRONTEND */

```

Regards,
Zhang Mingli

Attachment Content-Type Size
v-0001-Fix-code-comments-COPY_FRONTEND.patch application/octet-stream 1.1 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Ranier Vilela 2022-08-06 12:12:53 Allocator sizeof operand mismatch (src/backend/regex/regcomp.c)
Previous Message Gurjeet Singh 2022-08-06 10:49:51 Re: `make check` doesn't pass on MacOS Catalina