aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-02-24 11:04:45 +0200
committerPeter Eisentraut <peter_e@gmx.net>2012-02-24 11:04:45 +0200
commit9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b (patch)
treee542de2f7935d7a38ce7b24521c546e1608f6270 /src/backend/commands
parent173e29aa5deefd9e71c183583ba37805c8102a72 (diff)
downloadpostgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.tar.gz
postgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.zip
Add some enumeration commas, for consistency
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/async.c2
-rw-r--r--src/backend/commands/tablecmds.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c
index a81f7c76c3e..fcb087ed15d 100644
--- a/src/backend/commands/async.c
+++ b/src/backend/commands/async.c
@@ -739,7 +739,7 @@ AtPrepare_Notify(void)
if (pendingActions || pendingNotifies)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
- errmsg("cannot PREPARE a transaction that has executed LISTEN, UNLISTEN or NOTIFY")));
+ errmsg("cannot PREPARE a transaction that has executed LISTEN, UNLISTEN, or NOTIFY")));
}
/*
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 07dc326cea7..28889c1f440 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -2115,7 +2115,7 @@ renameatt_check(Oid myrelid, Form_pg_class classform, bool recursing)
relkind != RELKIND_FOREIGN_TABLE)
ereport(ERROR,
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
- errmsg("\"%s\" is not a table, view, composite type, index or foreign table",
+ errmsg("\"%s\" is not a table, view, composite type, index, or foreign table",
NameStr(classform->relname))));
/*