mirror of
https://github.com/lancedb/lancedb.git
synced 2026-07-04 03:20:40 +00:00
30 lines
513 B
Markdown
30 lines
513 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / RenameTableOptions
|
|
|
|
# Interface: RenameTableOptions
|
|
|
|
## Properties
|
|
|
|
### namespacePath?
|
|
|
|
```ts
|
|
optional namespacePath: string[];
|
|
```
|
|
|
|
The namespace path of the table being renamed. Defaults to the root
|
|
namespace (`[]`) when omitted.
|
|
|
|
***
|
|
|
|
### newNamespacePath?
|
|
|
|
```ts
|
|
optional newNamespacePath: string[];
|
|
```
|
|
|
|
The namespace path to move the table to as part of the rename. When
|
|
omitted the table stays in `namespacePath`.
|