Skip to content
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

Minor: Re-export variable provider #12351

Merged
merged 1 commit into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion datafusion/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,6 @@ pub mod physical_optimizer;
pub mod physical_planner;
pub mod prelude;
pub mod scalar;
pub mod variable;

// re-export dependencies from arrow-rs to minimize version maintenance for crate users
pub use arrow;
Expand Down Expand Up @@ -602,6 +601,11 @@ pub mod functions_window {
pub use datafusion_functions_window::*;
}

/// re-export of variable provider for `@name` and `@@name` style runtime values.
pub mod variable {
pub use datafusion_expr::var_provider::{VarProvider, VarType};
}

#[cfg(test)]
pub mod test;
pub mod test_util;
Expand Down
20 changes: 0 additions & 20 deletions datafusion/core/src/variable/mod.rs

This file was deleted.

Loading