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

Function visit_order

datafusion/expr/src/logical_plan/plan.rs:4692–4708  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4690
4691 #[test]
4692 fn visit_order() {
4693 let mut visitor = OkVisitor::default();
4694 let plan = test_plan();
4695 let res = plan.visit_with_subqueries(&mut visitor);
4696 assert!(res.is_ok());
4697
4698 assert_debug_snapshot!(visitor.strings, @r#"
4699 [
4700 "pre_visit Projection",
4701 "pre_visit Filter",
4702 "pre_visit TableScan",
4703 "post_visit TableScan",
4704 "post_visit Filter",
4705 "post_visit Projection",
4706 ]
4707 "#);
4708 }
4709
4710 #[derive(Debug, Default)]
4711 /// Counter than counts to zero and returns true when it gets there

Callers

nothing calls this directly

Calls 2

test_planFunction · 0.85
visit_with_subqueriesMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…