()
| 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 |
nothing calls this directly
no test coverage detected
searching dependent graphs…