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 cdf55dd commit 70b9d26Copy full SHA for 70b9d26
datafusion/core/tests/user_defined/user_defined_plan.rs
@@ -262,8 +262,9 @@ async fn topk_query() -> Result<()> {
262
async fn topk_plan() -> Result<()> {
263
let ctx = setup_table(make_topk_context()).await?;
264
265
+ #[rustfmt::skip]
266
let mut expected = ["| logical_plan after topk | TopK: k=3 |",
- "| | TableScan: sales projection=[customer_id,revenue] |"].join("\n");
267
+ "| | TableScan:salesprojection=[customer_id,revenue]preferred_ordering=[sales.revenueDESCNULLSFIRST] |"].join("\n");
268
269
let explain_query = format!("EXPLAIN VERBOSE {QUERY}");
270
let actual_output = exec_sql(&ctx, &explain_query).await?;
0 commit comments