diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-06-02 15:08:47 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-06-02 15:10:25 -0400 |
commit | 5295fa8c0bb396bf2866205e093bc04d7a3394fe (patch) | |
tree | f01567e62a8981bb5e677c3f6636e2e2e8054848 | |
parent | 21538377ee6a0ee91f756726bd8b3de6d19fd20a (diff) | |
download | postgresql-5295fa8c0bb396bf2866205e093bc04d7a3394fe.tar.gz postgresql-5295fa8c0bb396bf2866205e093bc04d7a3394fe.zip |
Fix vim-induced typo.
-rw-r--r-- | src/backend/commands/tablecmds.c | 2 |
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)))); } |