From df8a19767fda1b21e966675e8061647058ae8a9b Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Tue, 20 May 2025 12:51:08 +0300 Subject: [PATCH] Fixes to account for collation --- core/translate/main_loop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/translate/main_loop.rs b/core/translate/main_loop.rs index aae7abde4..615007ba3 100644 --- a/core/translate/main_loop.rs +++ b/core/translate/main_loop.rs @@ -86,7 +86,7 @@ pub fn init_distinct(program: &mut ProgramBuilder, plan: &mut SelectPlan) { name: col.expr.to_string(), order: SortOrder::Asc, pos_in_table: i, - collation: None, // FIXME: this should be inferred from the expression + collation: None, // FIXME: this should be determined based on the result column expression! }) .collect(), unique: false,