(engine: &Engine)
| 134 | #[cfg(feature = "extensions")] |
| 135 | #[allow(dead_code)] |
| 136 | pub(crate) fn load_initdb_module(engine: &Engine) -> Result<Module> { |
| 137 | load_artifact_module(engine, "tool:initdb") |
| 138 | } |
| 139 | |
| 140 | fn install_artifact(name: &str) -> Result<InstalledArtifact> { |
| 141 | if let Some(artifact) = installed_artifact(name) { |
nothing calls this directly
no test coverage detected