forked from mirror/go-sqlcipher
Fix type of variadic
This commit is contained in:
parent
5994cc52df
commit
81b9db8126
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue