You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by gr...@apache.org on 2020/09/15 19:16:26 UTC

[kudu] 01/05: [transactions] Adjust Java package for transactions.proto

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

granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit dc28392314605880583ba9b8926e2b86d15768f6
Author: Grant Henke <gr...@apache.org>
AuthorDate: Tue Sep 15 09:43:15 2020 -0500

    [transactions] Adjust Java package for transactions.proto
    
    This patch moves the Java package for transactions.proto
    from `kudu.transactions` to `org.apache.kudu.transactions`
    to match the location of the other generated Java classes.
    
    Change-Id: I69866e0688a9ef9378b7615ecbb5c3089c3d85fd
    Reviewed-on: http://gerrit.cloudera.org:8080/16451
    Tested-by: Kudu Jenkins
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
    Reviewed-by: Andrew Wong <aw...@cloudera.com>
---
 src/kudu/transactions/transactions.proto | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/kudu/transactions/transactions.proto b/src/kudu/transactions/transactions.proto
index 0d669e5..7013935 100644
--- a/src/kudu/transactions/transactions.proto
+++ b/src/kudu/transactions/transactions.proto
@@ -17,6 +17,8 @@
 syntax = "proto2";
 package kudu.transactions;
 
+option java_package = "org.apache.kudu.transactions";
+
 enum TxnStatePB {
   UNKNOWN = 0;
   OPEN = 1;