This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git


The following commit(s) were added to refs/heads/master by this push:
     new 1577037  PARQUET-1751: Fix Protobuf Build Warning (#736)
1577037 is described below

commit 1577037f172ce73050f466d714e3b1f24ed84082
Author: belugabehr <[email protected]>
AuthorDate: Mon Feb 3 05:59:23 2020 -0800

    PARQUET-1751: Fix Protobuf Build Warning (#736)
---
 parquet-protobuf/src/test/resources/TestProto3.proto   | 4 +++-
 parquet-protobuf/src/test/resources/TestProtobuf.proto | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/parquet-protobuf/src/test/resources/TestProto3.proto 
b/parquet-protobuf/src/test/resources/TestProto3.proto
index e49eef5..5729ef5 100644
--- a/parquet-protobuf/src/test/resources/TestProto3.proto
+++ b/parquet-protobuf/src/test/resources/TestProto3.proto
@@ -1,4 +1,3 @@
-syntax = "proto3";
 //
 // Licensed to the Apache Software Foundation (ASF) under one
 // or more contributor license agreements.  See the NOTICE file
@@ -17,6 +16,9 @@ syntax = "proto3";
 // specific language governing permissions and limitations
 // under the License.
 //
+
+syntax = "proto3";
+
 package TestProto3;
 
 option java_package = "org.apache.parquet.proto.test";
diff --git a/parquet-protobuf/src/test/resources/TestProtobuf.proto 
b/parquet-protobuf/src/test/resources/TestProtobuf.proto
index d4ab4c7..fe0cbe8 100644
--- a/parquet-protobuf/src/test/resources/TestProtobuf.proto
+++ b/parquet-protobuf/src/test/resources/TestProtobuf.proto
@@ -17,6 +17,8 @@
 // under the License.
 //
 
+syntax = "proto2";
+
 package TestProtobuf;
 
 option java_package = "org.apache.parquet.proto.test";

Reply via email to