jduo commented on a change in pull request #9368: URL: https://github.com/apache/arrow/pull/9368#discussion_r634804879
########## File path: java/flight/flight-sql/src/main/java/org/apache/arrow/flight/sql/FlightSQLClientUtils.java ########## @@ -0,0 +1,219 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 org.apache.arrow.flight.sql; + +import java.io.Closeable; +import java.io.IOException; +import java.nio.ByteBuffer; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +import org.apache.arrow.flight.Action; +import org.apache.arrow.flight.FlightClient; +import org.apache.arrow.flight.FlightDescriptor; +import org.apache.arrow.flight.FlightInfo; +import org.apache.arrow.flight.Result; +import org.apache.arrow.flight.sql.impl.FlightSQL; +import org.apache.arrow.flight.sql.impl.FlightSQL.ActionGetPreparedStatementResult; +import org.apache.arrow.flight.sql.impl.FlightSQL.ActionGetTablesRequest; +import org.apache.arrow.flight.sql.impl.FlightSQL.ActionGetTablesResult; +import org.apache.arrow.flight.sql.impl.FlightSQL.CommandPreparedStatementQuery; +import org.apache.arrow.vector.types.pojo.Schema; + +import com.google.protobuf.Any; +import com.google.protobuf.ByteString; + +import io.grpc.Status; + +/** + * Client side utilities to work with Flight SQL semantics. + */ +public final class FlightSQLClientUtils { Review comment: I'm thinking instead of a utils class to represent client calls we make a wrapper FlightSQLClient class on top of FlightClient and make the various operations instance methods on it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
