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

Method is_virtual_table

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

Check if a table is a virtual multi-file table

(&self, table_name: &str)

Source from the content-addressed store, hash-verified

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)>> {

Callers 14

fetch_dataMethod · 0.80
scan_dataMethod · 0.80
insert_schemaMethod · 0.80
delete_schemaMethod · 0.80
append_dataMethod · 0.80
insert_dataMethod · 0.80
delete_dataMethod · 0.80
scan_indexed_dataMethod · 0.80
create_indexMethod · 0.80
drop_indexMethod · 0.80
rename_schemaMethod · 0.80
rename_columnMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected