()
| 913 | } |
| 914 | |
| 915 | fn runtime_provided_sql_extensions() -> &'static [&'static str] { |
| 916 | &["plpgsql"] |
| 917 | } |
| 918 | |
| 919 | fn parse_repl_exports(path: &Path) -> Result<BTreeMap<String, ReplExport>> { |
| 920 | let text = fs::read_to_string(path).with_context(|| format!("read {}", path.display()))?; |
no outgoing calls
no test coverage detected