summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas2011-06-02 19:08:47 +0000
committerRobert Haas2011-06-02 19:10:25 +0000
commit5295fa8c0bb396bf2866205e093bc04d7a3394fe (patch)
treef01567e62a8981bb5e677c3f6636e2e2e8054848
parent21538377ee6a0ee91f756726bd8b3de6d19fd20a (diff)
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 bdbcdffa7d..60b66ec5c5 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))));
}