Skip to content

Commit

Permalink
expression: implement vectorized evaluation for builtinRowSig (#13321)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmyj authored and sre-bot committed Nov 10, 2019
1 parent b1aad07 commit 79eef48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions expression/builtin_other_vec.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ func (b *builtinValuesDurationSig) vecEvalDuration(input *chunk.Chunk, result *c
}

func (b *builtinRowSig) vectorized() bool {
return false
return true
}

func (b *builtinRowSig) vecEvalString(input *chunk.Chunk, result *chunk.Column) error {
return errors.Errorf("not implemented")
panic("builtinRowSig.vecEvalString() should never be called.")
}

func (b *builtinValuesRealSig) vectorized() bool {
Expand Down

0 comments on commit 79eef48

Please sign in to comment.