buraksenn commented on issue #20544: URL: https://github.com/apache/datafusion/issues/20544#issuecomment-4011524879
I've explored if this is fixable by not changing the type and public method signatures to not downstream dependencies but what I've come up is a hacky solution to put null values which is pretty fragile. Proper solution would require changes in these: ``` with_prepare_param_data_types: (Vec<FieldRef>) → Vec<Option<FieldRef>> prepare_param_data_types(): &[FieldRef] → &[Option<FieldRef>] prepare_param_data_types: Arc<Vec<FieldRef>> -> Arc<Vec<Option<FieldRef>>>, ``` I'm opening a PR to discuss what this implies I can close or go forward with this if approved. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
