Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/accessors/binary_array_accessor.h"
#include "arrow/testing/builder.h"
#include "arrow/testing/gtest_util.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

#include "arrow/flight/sql/odbc/odbc_impl/accessors/boolean_array_accessor.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/accessors/boolean_array_accessor.h"
#include "arrow/flight/sql/odbc/odbc_impl/calendar_utils.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
#include "arrow/builder.h"
#include "arrow/testing/builder.h"
#include "arrow/util/decimal.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {
namespace {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

#include "arrow/flight/sql/odbc/odbc_impl/diagnostics.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

#include "arrow/flight/sql/odbc/odbc_impl/encoding.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/calendar_utils.h"
#include "arrow/flight/sql/odbc/odbc_impl/util.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/calendar_utils.h"
#include "arrow/flight/sql/odbc/odbc_impl/util.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

#include "arrow/flight/sql/odbc/odbc_impl/platform.h"
#include "arrow/flight/types.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

#include <optional>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/json_converter.h"
#include "arrow/flight/test_flight_server.h"
#include "arrow/flight/test_util.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
#include "arrow/scalar.h"
#include "arrow/testing/builder.h"
#include "arrow/type.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/flight_sql_statement_get_tables.h"

#include "arrow/flight/sql/odbc/odbc_impl/platform.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/platform.h"
#include "arrow/record_batch.h"
#include "arrow/testing/builder.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {
namespace {
Expand Down
3 changes: 2 additions & 1 deletion cpp/src/arrow/flight/sql/odbc/odbc_impl/util_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
#include "arrow/testing/builder.h"
#include "arrow/testing/gtest_util.h"
#include "arrow/testing/util.h"
#include "gtest/gtest.h"

#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
6 changes: 2 additions & 4 deletions cpp/src/arrow/flight/sql/odbc/tests/columns_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
// under the License.
#include "arrow/flight/sql/odbc/tests/odbc_test_suite.h"

#ifdef _WIN32
# include <windows.h>
#endif
#include "arrow/flight/sql/odbc/odbc_impl/platform.h"

#include <sql.h>
#include <sqltypes.h>
#include <sqlucode.h>

#include "gtest/gtest.h"
#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {
// Helper functions
Expand Down
6 changes: 2 additions & 4 deletions cpp/src/arrow/flight/sql/odbc/tests/connection_attr_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
// under the License.
#include "arrow/flight/sql/odbc/tests/odbc_test_suite.h"

#ifdef _WIN32
# include <windows.h>
#endif
#include "arrow/flight/sql/odbc/odbc_impl/platform.h"

#include <sql.h>
#include <sqltypes.h>
#include <sqlucode.h>

#include "gtest/gtest.h"
#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
6 changes: 2 additions & 4 deletions cpp/src/arrow/flight/sql/odbc/tests/connection_info_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
// under the License.
#include "arrow/flight/sql/odbc/tests/odbc_test_suite.h"

#ifdef _WIN32
# include <windows.h>
#endif
#include "arrow/flight/sql/odbc/odbc_impl/platform.h"

#include <sql.h>
#include <sqltypes.h>
#include <sqlucode.h>

#include "gtest/gtest.h"
#include <gtest/gtest.h>

namespace arrow::flight::sql::odbc {

Expand Down
Loading
Loading