Skip to content

Commit d57dcbf

Browse files
committed
Fix error message wording
1 parent 48f25ca commit d57dcbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/copy.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.106 2000/05/18 01:52:45 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.106.2.1 2000/06/05 11:13:55 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -309,7 +309,7 @@ DoCopy(char *relname, bool binary, bool oids, bool from, bool pipe,
309309
if (from)
310310
{ /* copy from file to database */
311311
if (rel->rd_rel->relkind == RELKIND_SEQUENCE)
312-
elog(ERROR, "You can't change sequence relation %s", relname);
312+
elog(ERROR, "You cannot change sequence relation %s", relname);
313313
if (pipe)
314314
{
315315
if (IsUnderPostmaster)

0 commit comments

Comments
 (0)