From 4dea33097f5c68a3a7f1cde03e17bf6d49cebfbd Mon Sep 17 00:00:00 2001 From: Zac Blanco Date: Mon, 13 Jan 2025 12:58:56 -0800 Subject: [PATCH] Upgrade to airbase 104 --- pom.xml | 4 ++-- .../src/main/proto/GrpcUdfInvoke.proto | 14 +++++++++++ .../facebook/presto/sidecar/NoOpPlugin.java | 24 ------------------- 3 files changed, 16 insertions(+), 26 deletions(-) delete mode 100644 presto-native-sidecar-plugin/src/main/java/com/facebook/presto/sidecar/NoOpPlugin.java diff --git a/pom.xml b/pom.xml index 039a7ee27f6b0..1bd18678fe89c 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.facebook.airlift airbase - 102 + 104 com.facebook.presto @@ -2610,7 +2610,7 @@ com.facebook.presto presto-maven-plugin - 0.4 + 0.7 true diff --git a/presto-grpc-api/src/main/proto/GrpcUdfInvoke.proto b/presto-grpc-api/src/main/proto/GrpcUdfInvoke.proto index 6de9a04d8ff29..ff7bdb507e009 100644 --- a/presto-grpc-api/src/main/proto/GrpcUdfInvoke.proto +++ b/presto-grpc-api/src/main/proto/GrpcUdfInvoke.proto @@ -1,3 +1,17 @@ +// +// Licensed 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. +// + syntax = "proto3"; option java_multiple_files = true; diff --git a/presto-native-sidecar-plugin/src/main/java/com/facebook/presto/sidecar/NoOpPlugin.java b/presto-native-sidecar-plugin/src/main/java/com/facebook/presto/sidecar/NoOpPlugin.java deleted file mode 100644 index d42cfd99e66e8..0000000000000 --- a/presto-native-sidecar-plugin/src/main/java/com/facebook/presto/sidecar/NoOpPlugin.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * Licensed 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 com.facebook.presto.sidecar; - -import com.facebook.presto.spi.Plugin; - -/** - * Todo: Remove this class when support for CoordinatorPlugin is added in presto-maven-plugin. - */ -public class NoOpPlugin - implements Plugin -{ -}