# src/extension_utils.rs
- fill_chunk_with_strings · function · L20-L29 — pub fn fill_chunk_with_strings(chunk: &mut DataChunk, field_name: &str, values: &[String])
- quote_sql_identifier · function · L32-L34 — pub fn quote_sql_identifier(name: &str) -> String
- quote_sql_table_name · function · L41-L43 — pub fn quote_sql_table_name(name: &str) -> String
- MAX_RETAINED_TEMP_FILES · constant · L46-L46 — const MAX_RETAINED_TEMP_FILES: usize = 64;
- RETAINED_TEMP_FILES · constant · L50-L50 — static RETAINED_TEMP_FILES: Mutex<VecDeque<PathBuf>> = Mutex::new(VecDeque::new());
- retain_temp_file · function · L58-L67 — pub fn retain_temp_file(path: PathBuf) -> String
- clear_retained_temp_files · function · L70-L75 — pub fn clear_retained_temp_files()
- tests · module · L78-L141 — mod tests
- test_fill_chunk_with_strings · function · L83-L90 — fn test_fill_chunk_with_strings()
- test_fill_chunk_with_strings_replaces_schema · function · L93-L100 — fn test_fill_chunk_with_strings_replaces_schema()
- test_quote_sql_identifier · function · L103-L106 — fn test_quote_sql_identifier()
- test_quote_sql_table_name · function · L109-L118 — fn test_quote_sql_table_name()
- test_retain_temp_file_evicts_oldest · function · L121-L140 — fn test_retain_temp_file_evicts_oldest()