()
| 1717 | |
| 1718 | #[tokio::test] |
| 1719 | async fn except_distinct() -> Result<()> { |
| 1720 | let df = test_table().await?.select_columns(&["c1", "c3"])?; |
| 1721 | let d2 = df.clone(); |
| 1722 | let plan = df.except_distinct(d2)?; |
| 1723 | let result = plan.logical_plan().clone(); |
| 1724 | let expected = create_plan( |
| 1725 | "SELECT c1, c3 FROM aggregate_test_100 |
| 1726 | EXCEPT DISTINCT SELECT c1, c3 FROM aggregate_test_100", |
| 1727 | ) |
| 1728 | .await?; |
| 1729 | assert_same_plan(&result, &expected); |
| 1730 | Ok(()) |
| 1731 | } |
| 1732 | |
| 1733 | #[tokio::test] |
| 1734 | async fn intersect_distinct() -> Result<()> { |
nothing calls this directly
no test coverage detected
searching dependent graphs…