mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Remove non-album artist_ids from the DB
This commit is contained in:
parent
0d9dcebf32
commit
1c82bf5179
5 changed files with 53 additions and 1 deletions
|
@ -59,6 +59,16 @@ var _ = Describe("Helpers", func() {
|
|||
})
|
||||
})
|
||||
|
||||
Describe("notExists", func() {
|
||||
It("constructs the correct NOT EXISTS query", func() {
|
||||
e := notExists("artist", squirrel.ConcatExpr("id = artist_id"))
|
||||
sql, args, err := e.ToSql()
|
||||
Expect(sql).To(Equal("not exists (select 1 from artist where id = artist_id)"))
|
||||
Expect(args).To(BeEmpty())
|
||||
Expect(err).To(BeNil())
|
||||
})
|
||||
})
|
||||
|
||||
Describe("getMostFrequentMbzID", func() {
|
||||
It(`returns "" when no ids are passed`, func() {
|
||||
Expect(getMostFrequentMbzID(context.TODO(), " ", "", "")).To(Equal(""))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue