pub trait TypePlanner:
Debug
+ Send
+ Sync {
// Provided method
fn plan_type(&self, _sql_type: &DataType) -> Result<Option<DataType>> { ... }
}Available on crate feature
sql only.Expand description
Customize planning SQL types to DataFusion (Arrow) types.