Skip to content

Commit ad34e59

Browse files
authored
fix: add the missing ? to propagate error (#738)
1 parent 44e1517 commit ad34e59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/execution/evaluator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ pub async fn evaluate_source_entry(
528528
root_scope_entry.define_field_w_builder(
529529
&src_eval_ctx.import_op.output,
530530
value::Value::KTable(BTreeMap::from([(src_eval_ctx.key.clone(), scope_value)])),
531-
);
531+
)?;
532532

533533
evaluate_op_scope(
534534
&src_eval_ctx.plan.op_scope,

0 commit comments

Comments
 (0)