MCPcopy Create free account
hub / github.com/douglance/devsql / transcripts_schema

Method transcripts_schema

crates/ccql/src/sql/composite_storage.rs:228–237  ·  view source on GitHub ↗

Create a virtual schema for transcripts table (schemaless)

(&self)

Source from the content-addressed store, hash-verified

226
227 /// Create a virtual schema for transcripts table (schemaless)
228 fn transcripts_schema(&self) -> Schema {
229 Schema {
230 table_name: "transcripts".to_string(),
231 column_defs: None, // Schemaless
232 indexes: Vec::new(),
233 engine: None,
234 foreign_keys: Vec::new(),
235 comment: Some("Virtual table merging all transcript files".to_string()),
236 }
237 }
238
239 /// Create a virtual schema for sessions table (schemaless)
240 fn sessions_schema(&self) -> Schema {

Callers 2

fetch_schemaMethod · 0.80
fetch_all_schemasMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected