Execute a physical query plan with explicitly provided graph Internal method - use execute_query() instead
(
&self,
plan: &PhysicalPlan,
graph: &Arc<GraphCache>,
context: &mut ExecutionContext,
)
| 3369 | /// Execute a physical query plan with explicitly provided graph |
| 3370 | /// Internal method - use execute_query() instead |
| 3371 | fn execute_with_graph( |
| 3372 | &self, |
| 3373 | plan: &PhysicalPlan, |
| 3374 | graph: &Arc<GraphCache>, |
| 3375 | context: &mut ExecutionContext, |
| 3376 | ) -> Result<QueryResult, ExecutionError> { |
| 3377 | self.execute_with_provided_graph_and_audit(plan, graph, context) |
| 3378 | } |
| 3379 | |
| 3380 | /// Execute a physical query plan with explicit graph and audit logging |
| 3381 | /// Internal method - use execute_query() instead |
no test coverage detected