mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-05 03: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.
50 lines
917 B
Markdown
50 lines
917 B
Markdown
[vectordb](../README.md) / [Exports](../modules.md) / WriteMode
|
|
|
|
# Enumeration: WriteMode
|
|
|
|
Write mode for writing a table.
|
|
|
|
## Table of contents
|
|
|
|
### Enumeration Members
|
|
|
|
- [Append](WriteMode.md#append)
|
|
- [Create](WriteMode.md#create)
|
|
- [Overwrite](WriteMode.md#overwrite)
|
|
|
|
## Enumeration Members
|
|
|
|
### Append
|
|
|
|
• **Append** = ``"append"``
|
|
|
|
Append new data to the table.
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1347](https://github.com/lancedb/lancedb/blob/92179835/node/src/index.ts#L1347)
|
|
|
|
___
|
|
|
|
### Create
|
|
|
|
• **Create** = ``"create"``
|
|
|
|
Create a new [Table](../interfaces/Table.md).
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1343](https://github.com/lancedb/lancedb/blob/92179835/node/src/index.ts#L1343)
|
|
|
|
___
|
|
|
|
### Overwrite
|
|
|
|
• **Overwrite** = ``"overwrite"``
|
|
|
|
Overwrite the existing [Table](../interfaces/Table.md) if presented.
|
|
|
|
#### Defined in
|
|
|
|
[index.ts:1345](https://github.com/lancedb/lancedb/blob/92179835/node/src/index.ts#L1345)
|