mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-13 07:12:57 +00:00
`indexStats` still referenced UUID even though in https://github.com/lancedb/lancedb/pull/1702 we changed it to take name instead.
37 lines
756 B
Markdown
37 lines
756 B
Markdown
[vectordb](../README.md) / [Exports](../modules.md) / UpdateArgs
|
|
|
|
# Interface: UpdateArgs
|
|
|
|
## Table of contents
|
|
|
|
### Properties
|
|
|
|
- [values](UpdateArgs.md#values)
|
|
- [where](UpdateArgs.md#where)
|
|
|
|
## Properties
|
|
|
|
### values
|
|
|
|
• **values**: `Record`\<`string`, `Literal`\>
|
|
|
|
A key-value map of updates. The keys are the column names, and the values are the
|
|
new values to set
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:652](https://github.com/lancedb/lancedb/blob/92179835/node/src/index.ts#L652)
|
|
|
|
___
|
|
|
|
### where
|
|
|
|
• `Optional` **where**: `string`
|
|
|
|
A filter in the same format used by a sql WHERE clause. The filter may be empty,
|
|
in which case all rows will be updated.
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:646](https://github.com/lancedb/lancedb/blob/92179835/node/src/index.ts#L646)
|