feat(nodejs): add renameTable on Connection (#3386)

Adds `Connection.renameTable` to the Node SDK. Closes #3381.
This commit is contained in:
Brendan Clement
2026-05-20 09:05:48 -07:00
committed by GitHub
parent 54a1982ef1
commit 4cb9147bbf
8 changed files with 180 additions and 42 deletions

View File

@@ -0,0 +1,29 @@
[**@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`.