mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 16:28:15 +00:00
63ef986bac
Signed-off-by: junxiang Mu <1948535941@qq.com>
9 lines
209 B
Rust
9 lines
209 B
Rust
use datafusion::sql::planner::SqlToRel;
|
|
|
|
use crate::metadata::ContextProviderExtension;
|
|
|
|
pub struct SqlPlanner<'a, S: ContextProviderExtension> {
|
|
schema_provider: &'a S,
|
|
df_planner: SqlToRel<'a, S>,
|
|
}
|