[Code Comments]enum COPY_NEW_FE is removed

Started by Zhang Mingliover 3 years ago3 messages
#1Zhang Mingli
zmlpostgres@gmail.com
1 attachment(s)

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

Attachments:

v-0001-Fix-code-comments-COPY_FRONTEND.patchapplication/octet-streamDownload
From 5da5282cc29e45bda35a6e29ad8f87d6745f4856 Mon Sep 17 00:00:00 2001
From: Mingli Zhang <avamingli@gmail.com>
Date: Sat, 6 Aug 2022 19:08:42 +0800
Subject: [PATCH vn] Fix code comments COPY_FRONTEND

COPY_NEW_FE is removed in commit 3174d69fb9.
Use COPY_FRONTEND instead.

Backpatch-through: 15
Discussion: xxx
Reviewed-by: xxx
---
 src/include/commands/copyfrom_internal.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/commands/copyfrom_internal.h b/src/include/commands/copyfrom_internal.h
index 3df1c5a97c..e37c6032ae 100644
--- a/src/include/commands/copyfrom_internal.h
+++ b/src/include/commands/copyfrom_internal.h
@@ -58,7 +58,7 @@ typedef struct CopyFromStateData
 	/* low-level state data */
 	CopySource	copy_src;		/* type of copy source */
 	FILE	   *copy_file;		/* used if copy_src == COPY_FILE */
-	StringInfo	fe_msgbuf;		/* used if copy_src == COPY_NEW_FE */
+	StringInfo	fe_msgbuf;		/* used if copy_src == COPY_FRONTEND */
 
 	EolType		eol_type;		/* EOL type of input */
 	int			file_encoding;	/* file or remote side's character encoding */
-- 
2.34.1

#2Michael Paquier
michael@paquier.xyz
In reply to: Zhang Mingli (#1)
Re: [Code Comments]enum COPY_NEW_FE is removed

On Sat, Aug 06, 2022 at 07:20:25PM +0800, Zhang Mingli wrote:

Enum COPY_NEW_FE is removed in commit 3174d69fb9.

Should use COPY_FRONTEND instead.

Issue exists on 15 and master.

This also exists in REL_14_STABLE. I have fixed that on HEAD, as
that's just a comment.
--
Michael

#3Zhang Mingli
zmlpostgres@gmail.com
In reply to: Michael Paquier (#2)
Re: [Code Comments]enum COPY_NEW_FE is removed

Ok, thanks.

Michael Paquier <michael@paquier.xyz>于2022年8月6日 周六20:17写道:

Show quoted text

On Sat, Aug 06, 2022 at 07:20:25PM +0800, Zhang Mingli wrote:

Enum COPY_NEW_FE is removed in commit 3174d69fb9.

Should use COPY_FRONTEND instead.

Issue exists on 15 and master.

This also exists in REL_14_STABLE. I have fixed that on HEAD, as
that's just a comment.
--
Michael