From 1652a130c55d5529422efb342500542f79ad1f7d Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 30 Oct 2022 11:55:17 -0700 Subject: [PATCH] Removed unused assignments --- src/ivfbuild.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ivfbuild.c b/src/ivfbuild.c index 6875d22..cd37aad 100644 --- a/src/ivfbuild.c +++ b/src/ivfbuild.c @@ -233,8 +233,8 @@ InsertTuples(Relation index, IvfflatBuildState * buildstate, ForkNumber forkNum) GenericXLogState *state; int list; IndexTuple itup = NULL; /* silence compiler warning */ - BlockNumber startPage = InvalidBlockNumber; - BlockNumber insertPage = InvalidBlockNumber; + BlockNumber startPage; + BlockNumber insertPage; Size itemsz; int i; int64 inserted = 0;