Get the prepared plan with the given name.
(&self, name: &str)
| 1000 | |
| 1001 | /// Get the prepared plan with the given name. |
| 1002 | pub(crate) fn get_prepared(&self, name: &str) -> Option<Arc<PreparedPlan>> { |
| 1003 | self.prepared_plans.get(name).map(Arc::clone) |
| 1004 | } |
| 1005 | |
| 1006 | /// Remove the prepared plan with the given name. |
| 1007 | pub(crate) fn remove_prepared( |
no test coverage detected