feat(nodejs): feature parity [2/N] - add table.name and lancedb.connect({args}) (#1380)

depends on https://github.com/lancedb/lancedb/pull/1378

see proper diff here
https://github.com/universalmind303/lancedb/compare/remote-table-node...universalmind303:lancedb:table-name
This commit is contained in:
Cory Grinstead
2024-06-21 11:38:26 -05:00
committed by GitHub
parent 0fe844034d
commit b3e5ac6d2a
7 changed files with 59 additions and 18 deletions

View File

@@ -30,7 +30,7 @@ use crate::query::{Query, VectorQuery};
pub struct Table {
// We keep a duplicate of the table name so we can use it for error
// messages even if the table has been closed
name: String,
pub name: String,
pub(crate) inner: Option<LanceDbTable>,
}