()
| 4859 | |
| 4860 | #[test] |
| 4861 | fn error_post_visit() { |
| 4862 | let mut visitor = ErrorVisitor { |
| 4863 | return_error_from_post_in: OptionalCounter::new(1), |
| 4864 | ..Default::default() |
| 4865 | }; |
| 4866 | let plan = test_plan(); |
| 4867 | let res = plan.visit_with_subqueries(&mut visitor).unwrap_err(); |
| 4868 | assert_snapshot!( |
| 4869 | res.strip_backtrace(), |
| 4870 | @"This feature is not implemented: Error in post_visit" |
| 4871 | ); |
| 4872 | assert_debug_snapshot!( |
| 4873 | visitor.inner.strings, |
| 4874 | @r#" |
| 4875 | [ |
| 4876 | "pre_visit Projection", |
| 4877 | "pre_visit Filter", |
| 4878 | "pre_visit TableScan", |
| 4879 | "post_visit TableScan", |
| 4880 | ] |
| 4881 | "# |
| 4882 | ); |
| 4883 | } |
| 4884 | |
| 4885 | #[test] |
| 4886 | fn test_partial_eq_hash_and_partial_ord() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…