Check if a table has decimal columns (optimized with bloom filter)
(&self, table_name: &str)
| 102 | |
| 103 | /// Check if a table has decimal columns (optimized with bloom filter) |
| 104 | pub fn has_decimal_columns(&self, table_name: &str) -> bool { |
| 105 | self.decimal_tables.read().unwrap().contains(table_name) |
| 106 | } |
| 107 | |
| 108 | /// Preload all table schemas from the database |
| 109 | pub fn preload_all_schemas(&self, conn: &Connection) -> Result<(), rusqlite::Error> { |
no test coverage detected