Updated indentation [skip ci]

This commit is contained in:
Andrew Kane
2023-12-22 12:59:50 -05:00
parent 42cd4c6833
commit 66e14d2434

View File

@@ -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);