We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df766f commit 8c48c39Copy full SHA for 8c48c39
datafusion/core/tests/dataframe/mod.rs
@@ -114,10 +114,7 @@ async fn test_count_wildcard_on_where_in() -> Result<()> {
114
.await?
115
.aggregate(vec![], vec![count(wildcard())])?
116
.select(vec![count(wildcard())])?
117
- .into_unoptimized_plan(),
118
- // Usually, into_optimized_plan() should be used here, but due to
119
- // https://github.com/apache/datafusion/issues/5771,
120
- // subqueries in SQL cannot be optimized, resulting in differences in logical_plan. Therefore, into_unoptimized_plan() is temporarily used here.
+ .into_optimized_plan()?,
121
),
122
))?
123
.select(vec![col("a"), col("b")])?
0 commit comments