Skip to content

Commit

Permalink
fix: minor fix in result set logic for downstream implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Aug 12, 2024
1 parent 4ff85d6 commit e33ccb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public OExecutionResultSet(
super();
this.stream = stream;
this.context = context;
this.plan = Optional.of(plan);
this.plan = Optional.ofNullable(plan);
}

@Override
Expand Down

0 comments on commit e33ccb5

Please sign in to comment.