Bug nom colonne, amélioration test #76

This commit is contained in:
Colin Maudry
2026-05-05 14:56:49 +02:00
parent f4b57dbe5c
commit 755b8c13ab
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -221,7 +221,7 @@ def tokenize_text_filter(
if col_is_date:
quoted_col = f'CAST("{column}" AS VARCHAR)'
else:
quoted_col = '"column"'
quoted_col = f'"{column}"'
conditions = [f'"{column}" IS NOT NULL', f"{quoted_col} <> ''"]