We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1247477 commit 2f71edaCopy full SHA for 2f71eda
arrow/src/compute/kernels/comparison.rs
@@ -240,7 +240,7 @@ pub fn ilike_utf8<OffsetSize: StringOffsetSizeTrait>(
240
fn like_to_regex(pat: &str) -> Result<String> {
241
let mut is_escaped = false;
242
let mut re_pattern = String::new();
243
- let regex_chars = "-[]{}()*+?.,^$|#";
+ let regex_chars = "-[]{}()*+?.^$|#";
244
for c in pat.chars() {
245
if is_escaped {
246
is_escaped = false;
0 commit comments