Skip to content

Commit

Permalink
only defer
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Sep 23, 2024
1 parent 558c0b5 commit dabce47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,9 @@ func (h *Handler) resultForDefaultIter(
if trackedIter, ok := iter.(*plan.TrackedRowIter); ok {
if commitNode, ok := trackedIter.Node.(*plan.TransactionCommittingNode); ok {
if proj, ok := commitNode.Child().(*plan.Project); ok {
projections = proj.Projections
if proj.Deferred {
projections = proj.Projections
}
}
}
}
Expand Down

0 comments on commit dabce47

Please sign in to comment.