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 aed749a commit 18a6a91Copy full SHA for 18a6a91
pkg/sql/delete_swap.go
@@ -133,6 +133,7 @@ func (d *deleteSwapNode) BatchedValues(rowIdx int) tree.Datums {
133
}
134
135
func (d *deleteSwapNode) Close(ctx context.Context) {
136
+ d.input.Close(ctx)
137
d.run.td.close(ctx)
138
*d = deleteSwapNode{}
139
deleteSwapNodePool.Put(d)
pkg/sql/update_swap.go
@@ -133,6 +133,7 @@ func (u *updateSwapNode) BatchedValues(rowIdx int) tree.Datums {
func (u *updateSwapNode) Close(ctx context.Context) {
+ u.input.Close(ctx)
u.run.tu.close(ctx)
*u = updateSwapNode{}
updateSwapNodePool.Put(u)
0 commit comments