Skip to content

Commit fac5c77

Browse files
committed
fix: use correct value for test
1 parent 05ae951 commit fac5c77

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

query/tests/integration.rs

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -276,15 +276,17 @@ EXPLAIN SELECT add_one(1);
276276
insta::assert_snapshot!(
277277
batches_to_string(&batch),
278278
@r"
279-
+---------------+--------------------------------------------------------+
280-
| plan_type | plan |
281-
+---------------+--------------------------------------------------------+
282-
| logical_plan | Projection: add_one(Int64(1)) |
283-
| | EmptyRelation |
284-
| physical_plan | ProjectionExec: expr=[add_one(1) as add_one(Int64(1))] |
285-
| | PlaceholderRowExec |
286-
| | |
287-
+---------------+--------------------------------------------------------+
279+
│++---------------+------------------------------------------------------------------------------+
280+
│+| plan_type | plan |
281+
│++---------------+------------------------------------------------------------------------------+
282+
│+| logical_plan | Projection: add_one(Int64(1)) |
283+
│+| | EmptyRelation |
284+
│+| physical_plan | ProjectionExec: expr=[__async_fn_0@0 as add_one(Int64(1))] |
285+
│+| | AsyncFuncExec: async_expr=[async_expr(name=__async_fn_0, expr=add_one(1))] |
286+
│+| | CoalesceBatchesExec: target_batch_size=8192 |
287+
│+| | PlaceholderRowExec |
288+
│+| | |
289+
│++---------------+------------------------------------------------------------------------------+
288290
");
289291
}
290292

0 commit comments

Comments
 (0)