-
Couldn't load subscription status.
- Fork 1.7k
Implement native support StringView for CONTAINS function
#12168
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
08bdb29
Implement native support StringView for contains function
tlm365 23b99dd
Merge branch 'main' into contains-string-view
tlm365 31305cc
Fix cargo fmt
tlm365 a78d959
Implement native support StringView for contains function
tlm365 88aab46
Fix cargo check
tlm365 45dd141
Fix unresolved doc link
tlm365 4344bc8
Implement native support StringView for contains function
tlm365 29eb132
Update datafusion/functions/src/regexp_common.rs
alamb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,123 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| //! Common utilities for implementing regex functions | ||
|
|
||
| use crate::string::common::StringArrayType; | ||
|
|
||
| use arrow::array::{Array, ArrayDataBuilder, BooleanArray}; | ||
| use arrow::datatypes::DataType; | ||
| use arrow_buffer::{BooleanBufferBuilder, NullBuffer}; | ||
| use datafusion_common::DataFusionError; | ||
| use regex::Regex; | ||
|
|
||
| use std::collections::HashMap; | ||
|
|
||
| #[cfg(doc)] | ||
| use arrow::array::{LargeStringArray, StringArray, StringViewArray}; | ||
| /// Perform SQL `array ~ regex_array` operation on | ||
| /// [`StringArray`] / [`LargeStringArray`] / [`StringViewArray`]. | ||
| /// | ||
| /// If `regex_array` element has an empty value, the corresponding result value is always true. | ||
| /// | ||
| /// `flags_array` are optional [`StringArray`] / [`LargeStringArray`] / [`StringViewArray`] flag, | ||
| /// which allow special search modes, such as case-insensitive and multi-line mode. | ||
| /// See the documentation [here](https://docs.rs/regex/1.5.4/regex/#grouping-and-flags) | ||
| /// for more information. | ||
| /// | ||
| /// It is inspired / copied from `regexp_is_match_utf8` [arrow-rs]. | ||
| /// | ||
| /// Can remove when <https://github.com/apache/arrow-rs/issues/6370> is implemented upstream | ||
| /// | ||
| /// [arrow-rs]: https://github.com/apache/arrow-rs/blob/8c956a9f9ab26c14072740cce64c2b99cb039b13/arrow-string/src/regexp.rs#L31-L37 | ||
| pub fn regexp_is_match_utf8<'a, S1, S2, S3>( | ||
| array: &'a S1, | ||
| regex_array: &'a S2, | ||
| flags_array: Option<&'a S3>, | ||
| ) -> datafusion_common::Result<BooleanArray, DataFusionError> | ||
| where | ||
| &'a S1: StringArrayType<'a>, | ||
| &'a S2: StringArrayType<'a>, | ||
| &'a S3: StringArrayType<'a>, | ||
| { | ||
| if array.len() != regex_array.len() { | ||
| return Err(DataFusionError::Execution( | ||
| "Cannot perform comparison operation on arrays of different length" | ||
| .to_string(), | ||
| )); | ||
| } | ||
|
|
||
| let nulls = NullBuffer::union(array.nulls(), regex_array.nulls()); | ||
|
|
||
| let mut patterns: HashMap<String, Regex> = HashMap::new(); | ||
| let mut result = BooleanBufferBuilder::new(array.len()); | ||
|
|
||
| let complete_pattern = match flags_array { | ||
| Some(flags) => Box::new(regex_array.iter().zip(flags.iter()).map( | ||
| |(pattern, flags)| { | ||
| pattern.map(|pattern| match flags { | ||
| Some(flag) => format!("(?{flag}){pattern}"), | ||
| None => pattern.to_string(), | ||
| }) | ||
| }, | ||
| )) as Box<dyn Iterator<Item = Option<String>>>, | ||
| None => Box::new( | ||
| regex_array | ||
| .iter() | ||
| .map(|pattern| pattern.map(|pattern| pattern.to_string())), | ||
| ), | ||
| }; | ||
|
|
||
| array | ||
| .iter() | ||
| .zip(complete_pattern) | ||
| .map(|(value, pattern)| { | ||
| match (value, pattern) { | ||
| (Some(_), Some(pattern)) if pattern == *"" => { | ||
| result.append(true); | ||
| } | ||
| (Some(value), Some(pattern)) => { | ||
| let existing_pattern = patterns.get(&pattern); | ||
| let re = match existing_pattern { | ||
| Some(re) => re, | ||
| None => { | ||
| let re = Regex::new(pattern.as_str()).map_err(|e| { | ||
| DataFusionError::Execution(format!( | ||
| "Regular expression did not compile: {e:?}" | ||
| )) | ||
| })?; | ||
| patterns.entry(pattern).or_insert(re) | ||
| } | ||
| }; | ||
| result.append(re.is_match(value)); | ||
| } | ||
| _ => result.append(false), | ||
| } | ||
| Ok(()) | ||
| }) | ||
| .collect::<datafusion_common::Result<Vec<()>, DataFusionError>>()?; | ||
|
|
||
| let data = unsafe { | ||
| ArrayDataBuilder::new(DataType::Boolean) | ||
| .len(array.len()) | ||
| .buffers(vec![result.into()]) | ||
| .nulls(nulls) | ||
| .build_unchecked() | ||
| }; | ||
|
|
||
| Ok(BooleanArray::from(data)) | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.