Add missing serial comma, for consistency.
authorRobert Haas
Wed, 28 Oct 2015 11:19:14 +0000 (12:19 +0100)
committerRobert Haas
Wed, 28 Oct 2015 11:24:51 +0000 (12:24 +0100)
Amit Langote, per Etsuro Fujita

src/backend/commands/tablecmds.c

index f4a45995062d2915ecc6c9a0cf3c4c35aa8c5a9e..d7943505fe8580fe23858abc40614e73dd3ce734 100644 (file)
@@ -4340,7 +4340,7 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
            msg = _("\"%s\" is not a table or view");
            break;
        case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE:
-           msg = _("\"%s\" is not a table, view or foreign table");
+           msg = _("\"%s\" is not a table, view, or foreign table");
            break;
        case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX:
            msg = _("\"%s\" is not a table, view, materialized view, or index");