update write_regex

This commit is contained in:
llama 2025-07-01 07:58:23 +08:00
parent 87f8eb7ab2
commit 2725dc4ce9
No known key found for this signature in database
GPG key ID: 0B7543854B9413C3

View file

@ -828,7 +828,7 @@ impl SqlWriter<'_> {
fn write_regex(&mut self, word: &str, no_combining: bool) -> Result<()> {
let flds_expr = if no_combining {
"coalesce(without_combining(n.flds), n.flds)"
"coalesce(process_text(n.flds, 1), n.flds)"
} else {
"n.flds"
};