From 97c9c906e449b04f74b80045879c952a461e4b4e Mon Sep 17 00:00:00 2001 From: Lu Qiu Date: Thu, 12 Dec 2024 17:10:07 -0800 Subject: [PATCH] Fix version test --- python/python/tests/test_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/python/tests/test_table.py b/python/python/tests/test_table.py index e951290d..89cb2f2e 100644 --- a/python/python/tests/test_table.py +++ b/python/python/tests/test_table.py @@ -735,7 +735,7 @@ def test_create_scalar_index(db): indices = table.to_lance().list_indices() assert len(indices) == 1 scalar_index = indices[0] - assert scalar_index["type"] == "Scalar" + assert scalar_index["type"] == "BTree" # Confirm that prefiltering still works with the scalar index column results = table.search().where("x = 'c'").to_arrow()