diff options
Diffstat (limited to 'src/backend/commands/copy.c')
-rw-r--r-- | src/backend/commands/copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index 00a2417a099..3e14c536e21 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -3346,7 +3346,7 @@ CopyReadLineText(CopyState cstate) * just use the char as a toggle. If they are different, we need * to ensure that we only take account of an escape inside a * quoted field and immediately preceding a quote char, and not - * the second in a escape-escape sequence. + * the second in an escape-escape sequence. */ if (in_quote && c == escapec) last_was_esc = !last_was_esc; |