Skip to content

Commit

Permalink
Remove circular dependency (apache#9279)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Feb 19, 2024
1 parent 5291b03 commit 779689a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion datafusion/physical-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ uuid = { version = "^1.2", features = ["v4"] }

[dev-dependencies]
criterion = "0.5"
datafusion = { workspace = true }
rand = { workspace = true }
rstest = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion datafusion/physical-expr/src/datetime_expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ pub fn make_current_time(
///
/// # Examples
///
/// ```
/// ```ignore
/// # use chrono::prelude::*;
/// # use datafusion::prelude::*;
/// # use datafusion::error::Result;
Expand Down
6 changes: 3 additions & 3 deletions datafusion/physical-expr/src/regex_expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ macro_rules! fetch_string_arg {
///
/// # Examples
///
/// ```
/// ```ignore
/// # use datafusion::prelude::*;
/// # use datafusion::error::Result;
/// # #[tokio::main]
Expand Down Expand Up @@ -136,7 +136,7 @@ pub fn regexp_like<T: OffsetSizeTrait>(args: &[ArrayRef]) -> Result<ArrayRef> {
///
/// # Examples
///
/// ```
/// ```ignore
/// # use datafusion::prelude::*;
/// # use datafusion::error::Result;
/// # #[tokio::main]
Expand Down Expand Up @@ -216,7 +216,7 @@ fn regex_replace_posix_groups(replacement: &str) -> String {
///
/// # Examples
///
/// ```
/// ```ignore
/// # use datafusion::prelude::*;
/// # use datafusion::error::Result;
/// # #[tokio::main]
Expand Down

0 comments on commit 779689a

Please sign in to comment.