mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-03 18:32:55 +00:00
* Sets `"useCodeBlocks": true` * Adds a post-processing script `nodejs/typedoc_post_process.js` that puts the parameter description on the same line as the parameter name, like it is in our Python docs. This makes the text hierarchy clearer in those sections and also makes the sections shorter.
25 lines
446 B
Markdown
25 lines
446 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / UpdateOptions
|
|
|
|
# Interface: UpdateOptions
|
|
|
|
## Properties
|
|
|
|
### where
|
|
|
|
```ts
|
|
where: string;
|
|
```
|
|
|
|
A filter that limits the scope of the update.
|
|
|
|
This should be an SQL filter expression.
|
|
|
|
Only rows that satisfy the expression will be updated.
|
|
|
|
For example, this could be 'my_col == 0' to replace all instances
|
|
of 0 in a column with some other default value.
|