Skip to content

Commit

Permalink
fix: Fix comma in like (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
waralexrom authored Oct 31, 2023
1 parent 1247477 commit 2f71eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow/src/compute/kernels/comparison.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ pub fn ilike_utf8<OffsetSize: StringOffsetSizeTrait>(
fn like_to_regex(pat: &str) -> Result<String> {
let mut is_escaped = false;
let mut re_pattern = String::new();
let regex_chars = "-[]{}()*+?.,^$|#";
let regex_chars = "-[]{}()*+?.^$|#";
for c in pat.chars() {
if is_escaped {
is_escaped = false;
Expand Down

0 comments on commit 2f71eda

Please sign in to comment.