Skip to content

Commit

Permalink
Fix name in rule registry
Browse files Browse the repository at this point in the history
  • Loading branch information
asenac committed Jul 30, 2023
1 parent fe0184b commit a82da60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query_graph/optimizer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ pub fn build_rule(rule_name: &str) -> Result<Box<dyn Rule>, ()> {
"FilterMergeRule" => Ok(Box::new(FilterMergeRule {})),
"FilterNormalizationRule" => Ok(Box::new(FilterNormalizationRule {})),
"FilterProjectTransposeRule" => Ok(Box::new(FilterProjectTransposeRule {})),
"IdentityRelationRule" => Ok(Box::new(IdentityJoinRule {})),
"IdentityJoinRule" => Ok(Box::new(IdentityJoinRule {})),
"JoinProjectTransposeRule" => Ok(Box::new(JoinProjectTransposeRule {})),
"JoinPruningRule" => Ok(Box::new(JoinPruningRule {})),
"OuterToInnerJoinRule" => Ok(Box::new(OuterToInnerJoinRule {})),
Expand Down

0 comments on commit a82da60

Please sign in to comment.