summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2022-08-26 16:55:06 +0900
committerEtsuro Fujita <efujita@postgresql.org>2022-08-26 16:55:06 +0900
commit4e330af04be0d5fd905a1b5320adbea7fb91b117 (patch)
treee6b199d6fae715a5eb56d3887ed9a96636c0e51b /src
parent599a487b093acb23ae1da7fe29eb0b6a4c26cc2c (diff)
Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c
index 85fa03dffd9..12ce8c77791 100644
--- a/src/backend/commands/copy.c
+++ b/src/backend/commands/copy.c
@@ -3678,7 +3678,7 @@ NextCopyFromRawFields(CopyState cstate, char ***fields, int *nfields)
/*
* Read next tuple from file for COPY FROM. Return false if no more tuples.
*
- * 'econtext' is used to evaluate default expression for each columns not
+ * 'econtext' is used to evaluate default expression for each column not
* read from the file. It can be NULL when no default values are used, i.e.
* when all columns are read from the file.
*