remove final

This commit is contained in:
Zoltan Haindrich 2024-06-25 06:33:45 +00:00
parent 9a4d04a818
commit 0d76a73c4c
1 changed files with 4 additions and 4 deletions

View File

@ -65,10 +65,10 @@ public interface DruidHook<T>
}
final HookKey<RelNode> CONVERTED_PLAN = new HookKey<>("converted", RelNode.class);
final HookKey<RelNode> LOGICAL_PLAN = new HookKey<>("logicalPlan", RelNode.class);
final HookKey<RelNode> DRUID_PLAN = new HookKey<>("druidPlan", RelNode.class);
final HookKey<String> SQL = new HookKey<>("sql", String.class);
HookKey<RelNode> CONVERTED_PLAN = new HookKey<>("converted", RelNode.class);
HookKey<RelNode> LOGICAL_PLAN = new HookKey<>("logicalPlan", RelNode.class);
HookKey<RelNode> DRUID_PLAN = new HookKey<>("druidPlan", RelNode.class);
HookKey<String> SQL = new HookKey<>("sql", String.class);
void invoke(HookKey<T> key, T object);