From 2ee510aa670876b1ade2836c2ad2337a4302d557 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 15 Feb 2022 18:14:03 -0800 Subject: [PATCH] Disabled scan progress [skip ci] --- src/ivfkmeans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ivfkmeans.c b/src/ivfkmeans.c index 6f6cd72..1fea666 100644 --- a/src/ivfkmeans.c +++ b/src/ivfkmeans.c @@ -229,7 +229,7 @@ SampleRows(IvfflatBuildState * buildstate) #if PG_VERSION_NUM >= 120000 table_index_build_range_scan(buildstate->heap, buildstate->index, buildstate->indexInfo, - false, true, true, targblock, 1, SampleCallback, (void *) buildstate, NULL); + false, true, false, targblock, 1, SampleCallback, (void *) buildstate, NULL); #elif PG_VERSION_NUM >= 110000 IndexBuildHeapRangeScan(buildstate->heap, buildstate->index, buildstate->indexInfo, false, true, targblock, 1, SampleCallback, (void *) buildstate, NULL);