tustvold commented on code in PR #4803:
URL: https://github.com/apache/arrow-datafusion/pull/4803#discussion_r1061411375
##########
datafusion/optimizer/src/optimizer.rs:
##########
@@ -92,9 +92,12 @@ pub struct OptimizerContext {
impl OptimizerContext {
/// Create optimizer config
pub fn new() -> Self {
+ let mut options = ConfigOptions::default();
+ options.optimizer.filter_null_join_keys = true;
Review Comment:
`OptimizerContext` is now only used within tests, and so I am going to leave
this for now. If you feel strongly I can file a follow up PR to change this,
but it creates a non-trivial amount of test-churn
--
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]