From ed9ef1f635e94c86eade743d4af4efd2101a4e09 Mon Sep 17 00:00:00 2001 From: Zoltan Haindrich Date: Fri, 26 Jul 2024 03:37:28 +0000 Subject: [PATCH] checkstryle --- .../druid/sql/calcite/run/DruidHook.java | 2 +- .../apache/druid/quidem/TestSqlModule.java | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/sql/src/main/java/org/apache/druid/sql/calcite/run/DruidHook.java b/sql/src/main/java/org/apache/druid/sql/calcite/run/DruidHook.java index c24c1165ec5..2335aa888ea 100644 --- a/sql/src/main/java/org/apache/druid/sql/calcite/run/DruidHook.java +++ b/sql/src/main/java/org/apache/druid/sql/calcite/run/DruidHook.java @@ -73,7 +73,7 @@ public interface DruidHook HookKey LOGICAL_PLAN = new HookKey<>("logicalPlan", RelNode.class); HookKey DRUID_PLAN = new HookKey<>("druidPlan", RelNode.class); HookKey SQL = new HookKey<>("sql", String.class); - HookKey MSQ_PLAN = new HookKey<>("msqPlan", String.class);; + HookKey MSQ_PLAN = new HookKey<>("msqPlan", String.class); void invoke(HookKey key, T object); diff --git a/sql/src/test/java/org/apache/druid/quidem/TestSqlModule.java b/sql/src/test/java/org/apache/druid/quidem/TestSqlModule.java index 811d3267b2f..2b4ca258507 100644 --- a/sql/src/test/java/org/apache/druid/quidem/TestSqlModule.java +++ b/sql/src/test/java/org/apache/druid/quidem/TestSqlModule.java @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package org.apache.druid.quidem; import com.google.common.base.Supplier;