func (s *SQL) runQueryer() (interface{}, error) {
    ctx := context.Background()
    rows, err := s.Config.Queryer.QueryContext(ctx, s.Config.Query, s.Config.Params...)
    if err != nil {
        return nil, err