From 86c326bd4a91d4a9b891e6f6aa96e0faeae64b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deluan=20Quint=C3=A3o?= Date: Tue, 17 Feb 2026 09:30:18 -0500 Subject: [PATCH] fix doc Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- persistence/sql_base_repository.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/persistence/sql_base_repository.go b/persistence/sql_base_repository.go index e5ef0e6f6..231d0905e 100644 --- a/persistence/sql_base_repository.go +++ b/persistence/sql_base_repository.go @@ -71,7 +71,7 @@ func (r *sqlRepository) registerModel(instance any, filters map[string]filterFun // // If PreferSortTags is enabled, it will map the order fields to the corresponding sort expression, // which gives precedence to sort tags. -// Ex: order_title => (coalesce(nullif(sort_title,"),order_title) collate NATURALSORT) +// Ex: order_title => (coalesce(nullif(sort_title,''), order_title) collate NATURALSORT) // To avoid performance issues, indexes should be created for these sort expressions // // All order_* fields are wrapped with NATURALSORT collation to enable natural number ordering