Skip to content

Commit e366bd0

Browse files
committed
update python test
1 parent 7f080cb commit e366bd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/python/tests/test_scalar_index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,14 +412,14 @@ def make_fts_search(ds):
412412
assert "ScalarIndexQuery" in plan
413413
assert "MaterializeIndex" not in plan
414414
assert "KNNVectorDistance" in plan
415-
assert "LanceScan" in plan
415+
assert "LanceRead" in plan
416416
assert make_vec_search(ds).to_table().num_rows == 12
417417

418418
plan = make_fts_search(ds).explain_plan()
419419
assert "ScalarIndexQuery" in plan
420420
assert "MaterializeIndex" not in plan
421421
assert "FlatMatchQuery" in plan
422-
assert "LanceScan" in plan
422+
assert "LanceRead" in plan
423423
assert make_fts_search(ds).to_table().num_rows == 12
424424

425425
# Update vector index but NOT scalar index

0 commit comments

Comments
 (0)