Skip to content

Commit

Permalink
Fix cargo check
Browse files Browse the repository at this point in the history
  • Loading branch information
tlm365 committed Aug 26, 2024
1 parent a78d959 commit 8508473
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datafusion/functions/src/regex/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

//! "regex" DataFusion functions
pub mod common;
pub mod regex_common;
pub mod regexplike;
pub mod regexpmatch;
pub mod regexpreplace;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion datafusion/functions/src/string/contains.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

use crate::regex::common::regexp_is_match;
use crate::regex::regex_common::regexp_is_match;
use crate::utils::make_scalar_function;

use arrow::array::{Array, ArrayRef, AsArray, GenericStringArray, StringViewArray};
Expand Down

0 comments on commit 8508473

Please sign in to comment.