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

Method open_table

crates/store/src/comments_store.rs:261–267  ·  view source on GitHub ↗
(&self, table_name: &str)

Source from the content-addressed store, hash-verified

259 }
260
261 async fn open_table(&self, table_name: &str) -> Result<Table> {
262 self.db
263 .open_table(table_name)
264 .execute()
265 .await
266 .with_context(|| format!("failed to open comments table {table_name}"))
267 }
268
269 async fn tasks_table(&self) -> Result<Table> {
270 self.open_table(&self.tasks_table).await

Callers 6

tasks_tableMethod · 0.45
published_tableMethod · 0.45
audit_tableMethod · 0.45
ai_runs_tableMethod · 0.45
ai_chunks_tableMethod · 0.45
ensure_tableFunction · 0.45

Calls 2

executeMethod · 0.80
with_contextMethod · 0.45

Tested by

no test coverage detected