aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2011-06-02 15:08:47 -0400
committerRobert Haas <rhaas@postgresql.org>2011-06-02 15:10:25 -0400
commit5295fa8c0bb396bf2866205e093bc04d7a3394fe (patch)
treef01567e62a8981bb5e677c3f6636e2e2e8054848
parent21538377ee6a0ee91f756726bd8b3de6d19fd20a (diff)
downloadpostgresql-5295fa8c0bb396bf2866205e093bc04d7a3394fe.tar.gz
postgresql-5295fa8c0bb396bf2866205e093bc04d7a3394fe.zip
Fix vim-induced typo.
-rw-r--r--src/backend/commands/tablecmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index bdbcdffa7dd..60b66ec5c5f 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -7387,7 +7387,7 @@ ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, LOCKMODE lock
default:
ereport(ERROR,
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
- errmsg("\"%s\" is not a table, view, sequence, or foreign tabl, or foreign tablee",
+ errmsg("\"%s\" is not a table, view, sequence, or foreign table",
NameStr(tuple_class->relname))));
}