Allow null query mods for dynamic queries

This commit is contained in:
Mark Beamer Jr 2019-07-01 23:46:37 -04:00
parent e3fe976c3c
commit c01b182839
No known key found for this signature in database
GPG key ID: 1C314FB89AD76973

View file

@ -8,9 +8,11 @@ type QueryMod func(q *queries.Query)
// Apply the query mods to the Query object
func Apply(q *queries.Query, mods ...QueryMod) {
for _, mod := range mods {
if mod != nil {
mod(q)
}
}
}
// SQL allows you to execute a plain SQL statement
func SQL(sql string, args ...interface{}) QueryMod {
@ -129,7 +131,6 @@ func ForceIndex( index string) QueryMod {
}
}
// Limit the number of returned rows
func Limit(limit int) QueryMod {
return func(q *queries.Query) {