Check if a table is a virtual multi-file table
(&self, table_name: &str)
| 42 | |
| 43 | /// Check if a table is a virtual multi-file table |
| 44 | fn is_virtual_table(&self, table_name: &str) -> bool { |
| 45 | matches!( |
| 46 | table_name, |
| 47 | "jhistory" | "codex_history" | "transcripts" | "todos" | "sessions" |
| 48 | ) |
| 49 | } |
| 50 | |
| 51 | /// Scan Codex jhistory and return all rows |
| 52 | fn scan_jhistory(&self) -> Result<Vec<(Key, DataRow)>> { |
no outgoing calls
no test coverage detected