]> granicus.if.org Git - postgresql/commitdiff
Fix typo.
authorRobert Haas <rhaas@postgresql.org>
Sun, 2 Jan 2011 12:26:10 +0000 (07:26 -0500)
committerRobert Haas <rhaas@postgresql.org>
Sun, 2 Jan 2011 12:26:10 +0000 (07:26 -0500)
Noted by Magnus Hagander.

src/backend/commands/vacuum.c

index 82d9775b2405639fd7e8c3a0f3951ccac22109d5..9098c5d5c6feef39e3ef98b0fe064bb3ccfd7d68 100644 (file)
@@ -894,7 +894,7 @@ vacuum_rel(Oid relid, VacuumStmt *vacstmt, bool do_toast, bool for_wraparound,
                onerel->rd_rel->relkind != RELKIND_TOASTVALUE)
        {
                ereport(WARNING,
-                               (errmsg("skipping \"%s\" --- cannot only non-tables or special system tables",
+                               (errmsg("skipping \"%s\" --- cannot vacuum non-tables or special system tables",
                                                RelationGetRelationName(onerel))));
                relation_close(onerel, lmode);
                PopActiveSnapshot();