lidavidm commented on PR #48596:
URL: https://github.com/apache/arrow/pull/48596#issuecomment-3736658782
The formatter has some complaints:
```diff
diff --git a/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/connection.h
b/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/connection.h
index 6feb5f208a..5418489169 100644
--- a/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/connection.h
+++ b/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/connection.h
@@ -26,8 +26,8 @@
#include <vector>
#include "arrow/flight/sql/odbc/odbc_impl/diagnostics.h"
-#include "arrow/flight/sql/odbc/odbc_impl/types.h"
#include "arrow/flight/sql/odbc/odbc_impl/type_fwd.h"
+#include "arrow/flight/sql/odbc/odbc_impl/types.h"
namespace arrow::flight::sql::odbc {
diff --git a/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/result_set.h
b/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/result_set.h
index 1832be6943..b4a3994ca3 100644
--- a/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/result_set.h
+++ b/cpp/src/arrow/flight/sql/odbc/odbc_impl/spi/result_set.h
@@ -22,8 +22,8 @@
#include "arrow/flight/sql/odbc/odbc_impl/platform.h"
-#include "arrow/flight/sql/odbc/odbc_impl/types.h"
#include "arrow/flight/sql/odbc/odbc_impl/type_fwd.h"
+#include "arrow/flight/sql/odbc/odbc_impl/types.h"
#include <sqltypes.h>
diff --git a/cpp/src/arrow/flight/sql/odbc/odbc_impl/type_fwd.h
b/cpp/src/arrow/flight/sql/odbc/odbc_impl/type_fwd.h
index dbec55d301..54e592949b 100644
--- a/cpp/src/arrow/flight/sql/odbc/odbc_impl/type_fwd.h
+++ b/cpp/src/arrow/flight/sql/odbc/odbc_impl/type_fwd.h
@@ -21,7 +21,7 @@ namespace arrow::flight::sql::odbc {
class Statement;
class ResultSet;
class ResultSetMetadata;
-}
+} // namespace arrow::flight::sql::odbc
// TODO: Replace ODBC namespace with namespace arrow::flight::sql::odbc
#48083
namespace ODBC {
@@ -29,4 +29,4 @@ class ODBCEnvironment;
class ODBCDescriptor;
class ODBCStatement;
class ODBCConnection;
-}
+} // namespace ODBC
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]