summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-07-18 00:46:25 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-07-18 00:46:25 +0000
commitccf193f1a595106cacb946a41ef39e1cb2259e60 (patch)
tree82117d9c333a723f6c786282a69c9b0b637347aa /src/include
parent75586cb584300393d7cde0dde292fb82ec18b3d5 (diff)
New-style vacuum neglected to update pg_class statistics about indexes
if there were no deletions to do.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/commands/vacuum.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h
index 9fd6513e91e..0d362bb1801 100644
--- a/src/include/commands/vacuum.h
+++ b/src/include/commands/vacuum.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: vacuum.h,v 1.38 2001/07/13 22:55:59 tgl Exp $
+ * $Id: vacuum.h,v 1.39 2001/07/18 00:46:25 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -44,6 +44,7 @@ extern void vac_update_relstats(Oid relid,
BlockNumber num_pages,
double num_tuples,
bool hasindex);
+extern bool vac_is_partial_index(Relation indrel);
extern void vac_init_rusage(VacRUsage *ru0);
extern const char *vac_show_rusage(VacRUsage *ru0);