(&self, table_name: &str)
| 214 | } |
| 215 | |
| 216 | fn codex_history_schema_for(&self, table_name: &str) -> Schema { |
| 217 | Schema { |
| 218 | table_name: table_name.to_string(), |
| 219 | column_defs: None, // Schemaless |
| 220 | indexes: Vec::new(), |
| 221 | engine: None, |
| 222 | foreign_keys: Vec::new(), |
| 223 | comment: Some("Virtual table for Codex CLI history.jsonl".to_string()), |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | /// Create a virtual schema for transcripts table (schemaless) |
| 228 | fn transcripts_schema(&self) -> Schema { |
no outgoing calls
no test coverage detected