MCPcopy Create free account
hub / github.com/acking-you/static_flow / open_table

Method open_table

crates/store/src/lancedb_api.rs:404–410  ·  view source on GitHub ↗
(&self, table_name: &str)

Source from the content-addressed store, hash-verified

402 }
403
404 async fn open_table(&self, table_name: &str) -> Result<Table> {
405 self.db
406 .open_table(table_name)
407 .execute()
408 .await
409 .with_context(|| format!("failed to open table `{table_name}`"))
410 }
411
412 async fn article_views_table(&self) -> Result<Table> {
413 self.open_table(&self.article_views_table).await

Calls 2

executeMethod · 0.80
with_contextMethod · 0.45

Tested by

no test coverage detected