]> granicus.if.org Git - postgresql/commitdiff
Add serial comma
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 14 Apr 2013 15:12:30 +0000 (11:12 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 14 Apr 2013 15:12:30 +0000 (11:12 -0400)
src/backend/rewrite/rewriteHandler.c
src/test/regress/expected/updatable_views.out

index 638fd1a85b5232ed3ece85187fe556c2d1bf8f8e..4209b4c6d0f7243e5ea229fef40c48a955f9bc74 100644 (file)
@@ -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.");
index 005bb0961e8b7c10464b6d61bdbc9339c1438379..ecb61e0ff321cfc8196eb264dac2462be3f9e601 100644 (file)
@@ -155,7 +155,7 @@ DETAIL:  Views that return columns that are not columns of their base relation a
 HINT:  To make the view updatable, provide an unconditional ON DELETE DO INSTEAD rule or an INSTEAD OF DELETE trigger.
 DELETE FROM ro_view6;
 ERROR:  cannot delete from view "ro_view6"
-DETAIL:  Views containing UNION, INTERSECT or EXCEPT are not automatically updatable.
+DETAIL:  Views containing UNION, INTERSECT, or EXCEPT are not automatically updatable.
 HINT:  To make the view updatable, provide an unconditional ON DELETE DO INSTEAD rule or an INSTEAD OF DELETE trigger.
 UPDATE ro_view7 SET a=a+1;
 ERROR:  cannot update view "ro_view7"