From 034c4e108820f8990ebcdb4583cbc48a67962981 Mon Sep 17 00:00:00 2001 From: froge Date: Fri, 14 Feb 2025 06:26:16 +1000 Subject: [PATCH] Add documentation around DB lookup semantics --- routes.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/routes.go b/routes.go index ef2411f..0ab5552 100644 --- a/routes.go +++ b/routes.go @@ -72,7 +72,9 @@ func (env *Env) getArtistByName(c *gin.Context) { } // Lookup this name in the DB and return any ArtistProfile objects - // This is case insensitive on sqlite + // NOTE: This is case insensitive on sqlite + // NOTE: However unicode is treated case sensitive due to very difficult conversions for some languages/characters + // NOTE: In future better DBs with unicode support such as postgres should be used var artistProfiles []ArtistProfile dbResult := env.db.Where("name LIKE ?", fmt.Sprintf("%%%s%%", artistName)).Preload("Genres").Find(&artistProfiles) if dbResult.Error != nil {