• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

try_compile/H10-Nov-2021-15849

ArrowFlightConfig.cmake.inH A D10-Nov-20211.4 KiB3733

ArrowFlightTestingConfig.cmake.inH A D10-Nov-20211.5 KiB3834

README.mdH A D10-Nov-20211.2 KiB3612

api.hH A D10-Nov-20211.1 KiB289

arrow-flight-testing.pc.inH A D10-Nov-20211 KiB2623

arrow-flight.pc.inH A D10-Nov-20211,018 2623

client.ccH A D10-Nov-202151.7 KiB1,3561,051

client.hH A D10-Nov-202113 KiB331146

client_auth.hH A D10-Nov-20212.2 KiB6324

client_cookie_middleware.ccH A D10-Nov-20212.3 KiB6636

client_cookie_middleware.hH A D10-Nov-20211.2 KiB348

client_header_internal.ccH A D10-Nov-202112.1 KiB338219

client_header_internal.hH A D10-Nov-20215.2 KiB15261

client_middleware.hH A D10-Nov-20212.6 KiB7422

customize_protobuf.hH A D10-Nov-20212.9 KiB10959

flight_benchmark.ccH A D10-Nov-202118.1 KiB494388

flight_test.ccH A D10-Nov-2021104.7 KiB2,8732,317

internal.ccH A D10-Nov-202118.9 KiB515406

internal.hH A D10-Nov-20214.6 KiB12975

middleware.hH A D10-Nov-20212 KiB7434

middleware_internal.hH A D10-Nov-20211.3 KiB4717

pch.hH A D10-Nov-20211.2 KiB274

perf.protoH A D10-Nov-20211.1 KiB4436

perf_server.ccH A D10-Nov-202110 KiB286221

platform.hH A D10-Nov-20211.3 KiB336

protocol_internal.ccH A D10-Nov-20211.3 KiB273

protocol_internal.hH A D10-Nov-20211.2 KiB295

serialization_internal.ccH A D10-Nov-202117.5 KiB475315

serialization_internal.hH A D10-Nov-20214.9 KiB15386

server.ccH A D10-Nov-202140.1 KiB1,166900

server.hH A D10-Nov-202110.8 KiB286109

server_auth.ccH A D10-Nov-20211.3 KiB3815

server_auth.hH A D10-Nov-20212.9 KiB7930

server_middleware.hH A D10-Nov-20213.2 KiB8423

test_integration.ccH A D10-Nov-202110.5 KiB271190

test_integration.hH A D10-Nov-20211.7 KiB5019

test_integration_client.ccH A D10-Nov-20219 KiB245174

test_integration_server.ccH A D10-Nov-20216.9 KiB208149

test_server.ccH A D10-Nov-20212.1 KiB6332

test_util.ccH A D10-Nov-202128.5 KiB823668

test_util.hH A D10-Nov-20217.4 KiB243157

types.ccH A D10-Nov-202111.9 KiB379307

types.hH A D10-Nov-202117.1 KiB530264

visibility.hH A D10-Nov-20211.5 KiB4927

README.md

1<!---
2  Licensed to the Apache Software Foundation (ASF) under one
3  or more contributor license agreements.  See the NOTICE file
4  distributed with this work for additional information
5  regarding copyright ownership.  The ASF licenses this file
6  to you under the Apache License, Version 2.0 (the
7  "License"); you may not use this file except in compliance
8  with the License.  You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing,
13  software distributed under the License is distributed on an
14  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  KIND, either express or implied.  See the License for the
16  specific language governing permissions and limitations
17  under the License.
18-->
19
20# Arrow Flight RPC System for C++
21
22## Development notes
23
24The gRPC protobuf plugin requires that libprotoc is in your
25`LD_LIBRARY_PATH`. Until we figure out a general solution, you may need to do:
26
27```
28export LD_LIBRARY_PATH=$PROTOBUF_HOME/lib:$LD_LIBRARY_PATH
29```
30
31Currently, to run the unit tests, the directory of executables must either be
32your current working directory or you need to add it to your path, e.g.
33
34```
35PATH=debug:$PATH debug/flight-test
36```