From bfb3a45b31be686a243a1842337501dec108dbb0 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Mon, 21 Oct 2024 21:47:03 -0700 Subject: [PATCH] Use consistent order [skip ci] --- src/hnsw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnsw.c b/src/hnsw.c index 2a678dd..2a61dd4 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -26,8 +26,8 @@ static const struct config_enum_entry hnsw_iterative_search_options[] = { }; int hnsw_ef_search; -int hnsw_max_search_tuples; int hnsw_iterative_search; +int hnsw_max_search_tuples; int hnsw_lock_tranche_id; static relopt_kind hnsw_relopt_kind;