diff options
Diffstat (limited to 'src/backend/rewrite/rewriteHandler.c')
-rw-r--r-- | src/backend/rewrite/rewriteHandler.c | 2 |
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."); |