Skip to content

Commit

Permalink
4
Browse files Browse the repository at this point in the history
  • Loading branch information
xinyiZzz committed Oct 27, 2023
1 parent 6c7f34d commit 9cc5aaf
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import com.google.protobuf.Any;
import com.google.protobuf.ByteString;
import com.google.protobuf.Message;
import static java.util.Arrays.asList;
import org.apache.arrow.flight.CallStatus;
import org.apache.arrow.flight.Criteria;
import org.apache.arrow.flight.FlightDescriptor;
Expand Down Expand Up @@ -130,7 +129,7 @@ public FlightInfo getFlightInfoStatement(final CommandStatementQuery request, fi
ticket = new Ticket(Any.pack(ticketStatement).toByteArray());
location = Location.forGrpcInsecure(Env.getCurrentEnv().getSelfNode().getHost(),
Env.getCurrentEnv().getSelfNode().getPort());
schema = new Schema(asList(
schema = new Schema(Collections.singletonList(
new Field("i", new FieldType(true, new Bool(), null, null), null)
));
} else {
Expand Down

0 comments on commit 9cc5aaf

Please sign in to comment.