File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ pub trait FlightSqlHandler: Send + Sync {
134134 request : Request < FlightDescriptor > ,
135135 ) -> Result < Response < FlightInfo > , Status > ;
136136
137- async fn get_flight_info_substrait (
137+ async fn get_flight_info_substrait_plan (
138138 & self ,
139139 query : arrow_flight:: sql:: CommandStatementSubstraitPlan ,
140140 request : Request < FlightDescriptor > ,
@@ -176,10 +176,10 @@ impl FlightSqlService for FlightSqlServ {
176176 request : Request < FlightDescriptor > ,
177177 ) -> Result < Response < FlightInfo > , Status > {
178178 self . handler
179- . get_flight_info_substrait ( query, request)
179+ . get_flight_info_substrait_plan ( query, request)
180180 . await
181181 . inspect_err ( |e| {
182- error ! ( "Error in get_flight_info_substrait : {:?}" , e) ;
182+ error ! ( "Error in get_flight_info_substrait_plan : {:?}" , e) ;
183183 } )
184184 }
185185
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ impl FlightSqlHandler for DfRayProxyHandler {
101101 }
102102 }
103103
104- async fn get_flight_info_substrait (
104+ async fn get_flight_info_substrait_plan (
105105 & self ,
106106 substrait : arrow_flight:: sql:: CommandStatementSubstraitPlan ,
107107 _request : Request < FlightDescriptor > ,
You can’t perform that action at this time.
0 commit comments