diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-02-24 11:04:45 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-02-24 11:04:45 +0200 |
commit | 9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b (patch) | |
tree | e542de2f7935d7a38ce7b24521c546e1608f6270 /src/backend/commands/async.c | |
parent | 173e29aa5deefd9e71c183583ba37805c8102a72 (diff) | |
download | postgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.tar.gz postgresql-9cfd800aab9ee3c3b0b2b11ab41e129cc92dc15b.zip |
Add some enumeration commas, for consistency
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 2 |
1 files changed, 1 insertions, 1 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"))); } /* |