From: Tom Lane Date: Tue, 27 Jun 2006 14:01:42 +0000 (+0000) Subject: Fix typo. X-Git-Tag: REL8_1_5~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60f46dee719d29dc82a2df2946c1e5b30ad95bc9;p=thirdparty%2Fpostgresql.git Fix typo. --- diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 29087c15385..01ae9c13939 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -13,7 +13,7 @@ * * Copyright (c) 2001-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.111.2.4 2006/06/27 03:45:28 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.111.2.5 2006/06/27 14:01:42 tgl Exp $ * ---------- */ #include "postgres.h" @@ -2922,7 +2922,7 @@ pgstat_recv_vacuum(PgStat_MsgVacuum *msg, int len) else { /* last_anl_tuples must never exceed n_live_tuples */ - tabentry->last_anl_tuplse = Min(tabentry->last_anl_tuples, + tabentry->last_anl_tuples = Min(tabentry->last_anl_tuples, msg->m_tuples); } }