Skip to content

Commit c88f1ff

Browse files
committed
fix a bug
1 parent 644f77b commit c88f1ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

presto-clp/src/main/java/com/facebook/presto/plugin/clp/optimization/ClpPlanOptimizerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public ClpPlanOptimizerProvider(FunctionMetadataManager functionManager, Standar
4242
@Override
4343
public Set<ConnectorPlanOptimizer> getLogicalPlanOptimizers()
4444
{
45-
return ImmutableSet.of();
45+
return ImmutableSet.of(new ClpUdfRewriter(functionManager));
4646
}
4747

4848
@Override

0 commit comments

Comments
 (0)