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

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new bc28696c77 GH-44034:  [Go][Format][FlightRPC] Update go_package in 
Flight.proto and FlightSql.proto (#44035)
bc28696c77 is described below

commit bc28696c77273618ca90ba3c7127513378849f31
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat Sep 14 09:33:17 2024 +0900

    GH-44034:  [Go][Format][FlightRPC] Update go_package in Flight.proto and 
FlightSql.proto (#44035)
    
    ### Rationale for this change
    
    We're migrating `go/` to apache/arrow-go.
    
    ### What changes are included in this PR?
    
    Update Go package name to .../apache/arrow-go/... from 
.../apache/arrow/go/...
    
    ### Are these changes tested?
    
    No.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #44034
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 format/Flight.proto    | 2 +-
 format/FlightSql.proto | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/format/Flight.proto b/format/Flight.proto
index 2187a51ed4..f2b0f889cf 100644
--- a/format/Flight.proto
+++ b/format/Flight.proto
@@ -20,7 +20,7 @@ syntax = "proto3";
 import "google/protobuf/timestamp.proto";
 
 option java_package = "org.apache.arrow.flight.impl";
-option go_package = "github.com/apache/arrow/go/arrow/flight/gen/flight";
+option go_package = "github.com/apache/arrow-go/arrow/flight/gen/flight";
 option csharp_namespace = "Apache.Arrow.Flight.Protocol";
 
 package arrow.flight.protocol;
diff --git a/format/FlightSql.proto b/format/FlightSql.proto
index 6fca141d69..ef1ae7513d 100644
--- a/format/FlightSql.proto
+++ b/format/FlightSql.proto
@@ -20,7 +20,7 @@ syntax = "proto3";
 import "google/protobuf/descriptor.proto";
 
 option java_package = "org.apache.arrow.flight.sql.impl";
-option go_package = "github.com/apache/arrow/go/arrow/flight/gen/flight";
+option go_package = "github.com/apache/arrow-go/arrow/flight/gen/flight";
 package arrow.flight.protocol.sql;
 
 /*

Reply via email to