-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix pattern handling in regexp_match function #1065
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,10 +47,17 @@ macro_rules! downcast_string_arg { | |
/// extract a specific group from a string column, using a regular expression | ||
pub fn regexp_match<T: StringOffsetSizeTrait>(args: &[ArrayRef]) -> Result<ArrayRef> { | ||
match args.len() { | ||
2 => compute::regexp_match(downcast_string_arg!(args[0], "string", T), downcast_string_arg!(args[1], "pattern", T), None) | ||
.map_err(DataFusionError::ArrowError), | ||
3 => compute::regexp_match(downcast_string_arg!(args[0], "string", T), downcast_string_arg!(args[1], "pattern", T), Some(downcast_string_arg!(args[1], "flags", T))) | ||
.map_err(DataFusionError::ArrowError), | ||
2 => { | ||
let values = downcast_string_arg!(args[0], "string", T); | ||
let regex = downcast_string_arg!(args[1], "pattern", T); | ||
compute::regexp_match(values, regex, None).map_err(DataFusionError::ArrowError) | ||
} | ||
3 => { | ||
let values = downcast_string_arg!(args[0], "string", T); | ||
let regex = downcast_string_arg!(args[1], "pattern", T); | ||
let flags = Some(downcast_string_arg!(args[2], "flags", T)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this line is the fix, index was 1 before the fix. |
||
compute::regexp_match(values, regex, flags).map_err(DataFusionError::ArrowError) | ||
} | ||
other => Err(DataFusionError::Internal(format!( | ||
"regexp_match was called with {} arguments. It requires at least 2 and at most 3.", | ||
other | ||
|
@@ -170,3 +177,58 @@ pub fn regexp_replace<T: StringOffsetSizeTrait>(args: &[ArrayRef]) -> Result<Arr | |
))), | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use arrow::array::*; | ||
|
||
#[test] | ||
fn test_case_sensitive_regexp_match() { | ||
let values = StringArray::from(vec!["abc"; 5]); | ||
let patterns = | ||
StringArray::from(vec!["^(a)", "^(A)", "(b|d)", "(B|D)", "^(b|c)"]); | ||
|
||
let elem_builder: GenericStringBuilder<i32> = GenericStringBuilder::new(0); | ||
let mut expected_builder = ListBuilder::new(elem_builder); | ||
expected_builder.values().append_value("a").unwrap(); | ||
expected_builder.append(true).unwrap(); | ||
expected_builder.append(false).unwrap(); | ||
expected_builder.values().append_value("b").unwrap(); | ||
expected_builder.append(true).unwrap(); | ||
expected_builder.append(false).unwrap(); | ||
expected_builder.append(false).unwrap(); | ||
let expected = expected_builder.finish(); | ||
|
||
let re = regexp_match::<i32>(&[Arc::new(values), Arc::new(patterns)]).unwrap(); | ||
|
||
assert_eq!(re.as_ref(), &expected); | ||
} | ||
|
||
#[test] | ||
fn test_case_insensitive_regexp_match() { | ||
let values = StringArray::from(vec!["abc"; 5]); | ||
let patterns = | ||
StringArray::from(vec!["^(a)", "^(A)", "(b|d)", "(B|D)", "^(b|c)"]); | ||
let flags = StringArray::from(vec!["i"; 5]); | ||
|
||
let elem_builder: GenericStringBuilder<i32> = GenericStringBuilder::new(0); | ||
let mut expected_builder = ListBuilder::new(elem_builder); | ||
expected_builder.values().append_value("a").unwrap(); | ||
expected_builder.append(true).unwrap(); | ||
expected_builder.values().append_value("a").unwrap(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
expected_builder.append(true).unwrap(); | ||
expected_builder.values().append_value("b").unwrap(); | ||
expected_builder.append(true).unwrap(); | ||
expected_builder.values().append_value("b").unwrap(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
expected_builder.append(true).unwrap(); | ||
expected_builder.append(false).unwrap(); | ||
let expected = expected_builder.finish(); | ||
|
||
let re = | ||
regexp_match::<i32>(&[Arc::new(values), Arc::new(patterns), Arc::new(flags)]) | ||
.unwrap(); | ||
|
||
assert_eq!(re.as_ref(), &expected); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://docs.rs/arrow/5.5.0/arrow/compute/kernels/regexp/fn.regexp_match.html for anyone else who may be looking