Compare the formatted string representation of two plans for equality
(plan1: &LogicalPlan, plan2: &LogicalPlan)
| 1821 | |
| 1822 | /// Compare the formatted string representation of two plans for equality |
| 1823 | fn assert_same_plan(plan1: &LogicalPlan, plan2: &LogicalPlan) { |
| 1824 | assert_eq!(format!("{plan1:?}"), format!("{plan2:?}")); |
| 1825 | } |
| 1826 | |
| 1827 | /// Create a logical plan from a SQL query |
| 1828 | async fn create_plan(sql: &str) -> Result<LogicalPlan> { |
no outgoing calls
no test coverage detected
searching dependent graphs…