Skip to content
Snippets Groups Projects
Commit ea36b0d3 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Add missing paren.

parent 977654d5
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.25 1997/03/09 23:29:15 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/vacuum.c,v 1.26 1997/03/10 15:08:57 momjian Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -1566,7 +1566,7 @@ vc_attrstats(Relation onerel, VacAttrStats *vacattrstats, HeapTuple htup)
}
stats->initialized = true;
}
if (VacAttrStatsLtGtValid(stats) {
if (VacAttrStatsLtGtValid(stats)) {
if (fmgr(stats->cmplt,value,stats->min)) {
vc_bucketcpy(stats->attr, value, &stats->min, &stats->min_len);
stats->min_cnt = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment