Create a virtual schema for transcripts table (schemaless)
(&self)
| 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 { |
no outgoing calls
no test coverage detected