Skip to content

Commit 2f71eda

Browse files
authored
fix: Fix comma in like (#27)
1 parent 1247477 commit 2f71eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrow/src/compute/kernels/comparison.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ pub fn ilike_utf8<OffsetSize: StringOffsetSizeTrait>(
240240
fn like_to_regex(pat: &str) -> Result<String> {
241241
let mut is_escaped = false;
242242
let mut re_pattern = String::new();
243-
let regex_chars = "-[]{}()*+?.,^$|#";
243+
let regex_chars = "-[]{}()*+?.^$|#";
244244
for c in pat.chars() {
245245
if is_escaped {
246246
is_escaped = false;

0 commit comments

Comments
 (0)