refactor: consolidate query executions into two functions queryOne and queryAll

This commit is contained in:
Deluan 2020-02-01 14:48:22 -05:00 committed by Deluan Quintão
parent 7e65bb8f20
commit 7c4511e33a
6 changed files with 20 additions and 57 deletions

View file

@ -49,11 +49,7 @@ func (r sqlRepository) doSearch(q string, offset, size int, results interface{},
Like{"full_text": "%" + part + "%"},
})
}
sql, args, err := r.toSql(sq)
if err != nil {
return err
}
_, err = r.ormer.Raw(sql, args...).QueryRows(results)
err := r.queryAll(sq, results)
return err
}