aboutsummaryrefslogtreecommitdiff
path: root/src/backend/rewrite/rewriteHandler.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-04-14 11:12:30 -0400
committerPeter Eisentraut <peter_e@gmx.net>2013-04-14 11:12:30 -0400
commite08fdf13107b6685047cf055c7966845c8c96f90 (patch)
tree4a31fa22e4ffc08ffb3b12ee58de45ae0faa1d0c /src/backend/rewrite/rewriteHandler.c
parent87306184580c9c49717b00d48a2f9e717f21e0a8 (diff)
downloadpostgresql-e08fdf13107b6685047cf055c7966845c8c96f90.tar.gz
postgresql-e08fdf13107b6685047cf055c7966845c8c96f90.zip
Add serial comma
Diffstat (limited to 'src/backend/rewrite/rewriteHandler.c')
-rw-r--r--src/backend/rewrite/rewriteHandler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/rewrite/rewriteHandler.c b/src/backend/rewrite/rewriteHandler.c
index 638fd1a85b5..4209b4c6d0f 100644
--- a/src/backend/rewrite/rewriteHandler.c
+++ b/src/backend/rewrite/rewriteHandler.c
@@ -1989,7 +1989,7 @@ view_is_auto_updatable(Relation view)
return gettext_noop("Views containing HAVING are not automatically updatable.");
if (viewquery->setOperations != NULL)
- return gettext_noop("Views containing UNION, INTERSECT or EXCEPT are not automatically updatable.");
+ return gettext_noop("Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable.");
if (viewquery->cteList != NIL)
return gettext_noop("Views containing WITH are not automatically updatable.");