Merge pull request #716 from mattn/fix-variadic

Fix type of variadic
This commit is contained in:
mattn 2019-05-11 01:41:06 +09:00 committed by GitHub
commit 2a192bf782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ func (c *SQLiteConn) RegisterAggregator(name string, impl interface{}, pure bool
ai.stepArgConverters = append(ai.stepArgConverters, conv) ai.stepArgConverters = append(ai.stepArgConverters, conv)
} }
if step.IsVariadic() { if step.IsVariadic() {
conv, err := callbackArg(t.In(start + stepNArgs).Elem()) conv, err := callbackArg(step.In(start + stepNArgs).Elem())
if err != nil { if err != nil {
return err return err
} }