Helper functions (these should be imported from the appropriate modules)
(query: &str)
| 363 | |
| 364 | // Helper functions (these should be imported from the appropriate modules) |
| 365 | fn extract_insert_table_name(query: &str) -> Option<String> { |
| 366 | crate::session::db_handler::extract_insert_table_name(query) |
| 367 | } |
| 368 | |
| 369 | fn rewrite_query_for_decimal(query: &str, conn: &Connection) -> Result<String, rusqlite::Error> { |
| 370 | crate::session::db_handler::rewrite_query_for_decimal(query, conn) |
no outgoing calls
no test coverage detected