Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9a70f67

Browse files
committed
Remove unnecessary backslash from CopyFrom() code.
Commit 4ac2a9b accidentally added an unnecessary backslash to CopyFrom() code. This commit removes it. Author: Yugo Nagata Reviewed-by: Tender Wang Discussion: https://postgr.es/m/20241112114609.4175a2e175282edd1463dbc6@sraoss.co.jp
1 parent 9321d2f commit 9a70f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/copyfrom.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ CopyFrom(CopyFromState cstate)
10181018
pgstat_progress_update_param(PROGRESS_COPY_TUPLES_SKIPPED,
10191019
cstate->num_errors);
10201020

1021-
if (cstate->opts.reject_limit > 0 && \
1021+
if (cstate->opts.reject_limit > 0 &&
10221022
cstate->num_errors > cstate->opts.reject_limit)
10231023
ereport(ERROR,
10241024
(errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),

0 commit comments

Comments
 (0)