(db_uri: &str, table: &str)
| 462 | } |
| 463 | |
| 464 | pub fn local_table_access_lock_path(db_uri: &str, table: &str) -> PathBuf { |
| 465 | local_table_lock_path(db_uri, table, "access") |
| 466 | } |
| 467 | |
| 468 | pub fn local_table_rewrite_lock_path(db_uri: &str, table: &str) -> PathBuf { |
| 469 | local_table_lock_path(db_uri, table, "rewrite") |
no test coverage detected