mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-27 15:12:53 +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.
446 B
446 B
@lancedb/lancedb • Docs
@lancedb/lancedb / UpdateOptions
Interface: UpdateOptions
Properties
where
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.