From: Robert Haas Date: Sun, 2 Jan 2011 12:26:10 +0000 (-0500) Subject: Fix typo. X-Git-Tag: REL9_1_ALPHA4~534 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e657b55e661577cf664949bce78068e2922f594f;p=postgresql Fix typo. Noted by Magnus Hagander. --- diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 82d9775b24..9098c5d5c6 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -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();