diff options
author | Etsuro Fujita <efujita@postgresql.org> | 2022-08-26 16:55:06 +0900 |
---|---|---|
committer | Etsuro Fujita <efujita@postgresql.org> | 2022-08-26 16:55:06 +0900 |
commit | 4e330af04be0d5fd905a1b5320adbea7fb91b117 (patch) | |
tree | e6b199d6fae715a5eb56d3887ed9a96636c0e51b /src/backend/commands/copy.c | |
parent | 599a487b093acb23ae1da7fe29eb0b6a4c26cc2c (diff) |
Fix typo in comment.
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 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. * |