From 66e14d2434a65419d71e047f4ef114ec0655b4b7 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Fri, 22 Dec 2023 12:59:50 -0500 Subject: [PATCH] Updated indentation [skip ci] --- src/hnswbuild.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hnswbuild.c b/src/hnswbuild.c index 17dbe65..86ec888 100644 --- a/src/hnswbuild.c +++ b/src/hnswbuild.c @@ -491,11 +491,11 @@ InitBuildState(HnswBuildState * buildstate, Relation heap, Relation index, Index buildstate->normvec = InitVector(buildstate->dimensions); buildstate->graphCtx = GenerationContextCreate(CurrentMemoryContext, - "Hnsw build graph context", + "Hnsw build graph context", #if PG_VERSION_NUM >= 150000 - 1024 * 1024, 1024 * 1024, + 1024 * 1024, 1024 * 1024, #endif - 1024 * 1024); + 1024 * 1024); buildstate->tmpCtx = AllocSetContextCreate(CurrentMemoryContext, "Hnsw build temporary context", ALLOCSET_DEFAULT_SIZES);