This commit is contained in:
Zoltan Haindrich 2024-07-30 16:04:11 +00:00
parent b1ab252b31
commit de207c7295
1 changed files with 1 additions and 1 deletions

View File

@ -35,6 +35,7 @@ public interface DruidHook<T>
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);
HookKey<String> MSQ_PLAN = new HookKey<>("msqPlan", String.class);
@Immutable
class HookKey<T>
@ -71,6 +72,5 @@ public interface DruidHook<T>
}
}
HookKey<String> MSQ_PLAN = new HookKey<>("msqPlan", String.class);
void invoke(HookKey<T> key, T object);
}