(root: &Path)
| 1567 | } |
| 1568 | |
| 1569 | pub fn install_into(root: &Path) -> Result<InstallOutcome> { |
| 1570 | let paths = PglitePaths::with_root(root); |
| 1571 | prepare_database_root(paths, RootPrepareOptions::template()) |
| 1572 | } |
| 1573 | |
| 1574 | pub(crate) fn prepare_database_root( |
| 1575 | paths: PglitePaths, |
no test coverage detected