Clear the query template cache
(self)
| 302 | return None |
| 303 | |
| 304 | def clear_cache(self): |
| 305 | """Clear the query template cache""" |
| 306 | self.query_cache.clear() |
| 307 | if hasattr(self, 'query_builder'): |
| 308 | self.query_builder.fragments.clear_cache() |
| 309 | |
| 310 | def materialize_data(self, sources: Optional[List[str]] = None) -> Dict[str, float]: |
| 311 | """Materialize CSV data into DuckDB tables for performance""" |