mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Mark helper function as unexported
This commit is contained in:
parent
9b817edd1a
commit
dbde5330bd
3 changed files with 6 additions and 6 deletions
|
@ -51,7 +51,7 @@ func yearFilter(field string, value interface{}) Sqlizer {
|
||||||
}
|
}
|
||||||
|
|
||||||
func artistFilter(field string, value interface{}) Sqlizer {
|
func artistFilter(field string, value interface{}) Sqlizer {
|
||||||
return Exists("media_file", And{
|
return exists("media_file", And{
|
||||||
ConcatExpr("album_id=album.id"),
|
ConcatExpr("album_id=album.id"),
|
||||||
Or{
|
Or{
|
||||||
Eq{"artist_id": value},
|
Eq{"artist_id": value},
|
||||||
|
|
|
@ -39,16 +39,16 @@ func toSnakeCase(str string) string {
|
||||||
return strings.ToLower(snake)
|
return strings.ToLower(snake)
|
||||||
}
|
}
|
||||||
|
|
||||||
func Exists(subTable string, cond squirrel.Sqlizer) exists {
|
func exists(subTable string, cond squirrel.Sqlizer) existsCond {
|
||||||
return exists{subTable: subTable, cond: cond}
|
return existsCond{subTable: subTable, cond: cond}
|
||||||
}
|
}
|
||||||
|
|
||||||
type exists struct {
|
type existsCond struct {
|
||||||
subTable string
|
subTable string
|
||||||
cond squirrel.Sqlizer
|
cond squirrel.Sqlizer
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e exists) ToSql() (string, []interface{}, error) {
|
func (e existsCond) ToSql() (string, []interface{}, error) {
|
||||||
sql, args, err := e.cond.ToSql()
|
sql, args, err := e.cond.ToSql()
|
||||||
sql = fmt.Sprintf("exists (select 1 from %s where %s)", e.subTable, sql)
|
sql = fmt.Sprintf("exists (select 1 from %s where %s)", e.subTable, sql)
|
||||||
return sql, args, err
|
return sql, args, err
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
var _ = Describe("Helpers", func() {
|
var _ = Describe("Helpers", func() {
|
||||||
Describe("Exists", func() {
|
Describe("Exists", func() {
|
||||||
It("constructs the correct EXISTS query", func() {
|
It("constructs the correct EXISTS query", func() {
|
||||||
e := Exists("album", squirrel.Eq{"id": 1})
|
e := exists("album", squirrel.Eq{"id": 1})
|
||||||
sql, args, err := e.ToSql()
|
sql, args, err := e.ToSql()
|
||||||
Expect(sql).To(Equal("exists (select 1 from album where id = ?)"))
|
Expect(sql).To(Equal("exists (select 1 from album where id = ?)"))
|
||||||
Expect(args).To(Equal([]interface{}{1}))
|
Expect(args).To(Equal([]interface{}{1}))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue