From 4bc424b968058c7f0aa685821d7039e86faac99c Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Thu, 9 Jun 2016 18:02:36 -0400 Subject: pgindent run for 9.6 --- contrib/bloom/blinsert.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'contrib/bloom/blinsert.c') diff --git a/contrib/bloom/blinsert.c b/contrib/bloom/blinsert.c index 15ac30d55f6..3953af996bb 100644 --- a/contrib/bloom/blinsert.c +++ b/contrib/bloom/blinsert.c @@ -33,11 +33,11 @@ PG_MODULE_MAGIC; typedef struct { BloomState blstate; /* bloom index state */ - MemoryContext tmpCtx; /* temporary memory context reset after - * each tuple */ + MemoryContext tmpCtx; /* temporary memory context reset after each + * tuple */ char data[BLCKSZ]; /* cached page */ int64 count; /* number of tuples in cached page */ -} BloomBuildState; +} BloomBuildState; /* * Flush page cached in BloomBuildState. @@ -140,8 +140,8 @@ blbuild(Relation heap, Relation index, IndexInfo *indexInfo) bloomBuildCallback, (void *) &buildstate); /* - * There are could be some items in cached page. Flush this page - * if needed. + * There are could be some items in cached page. Flush this page if + * needed. */ if (buildstate.count > 0) flushCachedPage(index, &buildstate); -- cgit v1.2.3