Skip to content
Snippets Groups Projects
Unverified Commit 1b51ba8f authored by nnsgmsone's avatar nnsgmsone Committed by GitHub
Browse files

Add missing error of const run (#2869)

parent b55fa227
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ func (p *Pipeline) ConstRun(bat *batch.Batch, proc *process.Process) (bool, erro ...@@ -96,7 +96,7 @@ func (p *Pipeline) ConstRun(bat *batch.Batch, proc *process.Process) (bool, erro
proc.Reg.InputBatch = bat proc.Reg.InputBatch = bat
end, err = overload.Run(p.instructions, proc) end, err = overload.Run(p.instructions, proc)
proc.Reg.InputBatch = nil proc.Reg.InputBatch = nil
end, err = overload.Run(p.instructions, proc) overload.Run(p.instructions, proc)
return end, err return end, err
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment