ci: fix Python and Node CI on main (#2700)

Example failure:
https://github.com/lancedb/lancedb/actions/runs/18237024283/job/51932651993
This commit is contained in:
Will Jones
2025-10-06 09:40:08 -07:00
committed by GitHub
parent 1357fe8aa1
commit 1ac745eb18
4 changed files with 29 additions and 3 deletions

View File

@@ -52,6 +52,30 @@ the merge result
***
### useIndex()
```ts
useIndex(useIndex): MergeInsertBuilder
```
Controls whether to use indexes for the merge operation.
When set to `true` (the default), the operation will use an index if available
on the join key for improved performance. When set to `false`, it forces a full
table scan even if an index exists. This can be useful for benchmarking or when
the query optimizer chooses a suboptimal path.
#### Parameters
* **useIndex**: `boolean`
Whether to use indices for the merge operation. Defaults to `true`.
#### Returns
[`MergeInsertBuilder`](MergeInsertBuilder.md)
***
### whenMatchedUpdateAll()
```ts