mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +00:00
@@ -0,0 +1 @@
|
||||
pub mod planner;
|
||||
@@ -0,0 +1,3 @@
|
||||
use crate::sql::planner::SqlPlanner;
|
||||
|
||||
pub type DefaultLogicalPlanner<'a, S> = SqlPlanner<'a, S>;
|
||||
@@ -0,0 +1,3 @@
|
||||
pub mod logical;
|
||||
pub mod physical;
|
||||
pub mod planner;
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
use datafusion::sql::planner::SqlToRel;
|
||||
|
||||
use crate::metadata::ContextProviderExtension;
|
||||
|
||||
pub struct SqlPlanner<'a, S: ContextProviderExtension> {
|
||||
schema_provider: &'a S,
|
||||
df_planner: SqlToRel<'a, S>,
|
||||
}
|
||||
Reference in New Issue
Block a user