MCPcopy Create free account
hub / github.com/apache/datafusion / get_prepared

Method get_prepared

datafusion/core/src/execution/session_state.rs:1002–1004  ·  view source on GitHub ↗

Get the prepared plan with the given name.

(&self, name: &str)

Source from the content-addressed store, hash-verified

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(

Callers 1

execute_preparedMethod · 0.80

Calls 2

mapMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected