From 85ab205423118bed80020c0080d8eb152dcbe87e Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Fri, 26 Dec 2025 15:23:03 +0900 Subject: [PATCH 1/2] Fix typo in arrow/cpp/README.md --- cpp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/README.md b/cpp/README.md index 2c05b10fe13..321dd409d0e 100644 --- a/cpp/README.md +++ b/cpp/README.md @@ -24,7 +24,7 @@ as well as for the C++ libraries for Apache Parquet. ## Installation -See https://arrow.apache.org/install/ for the latest instructions how +See https://arrow.apache.org/install/ for the latest instructions on how to install pre-compiled binary versions of the library. ## Source Builds and Development From 4ee272a1f4d688476bc12e0ea94580890473f128 Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Mon, 29 Dec 2025 16:33:02 +0900 Subject: [PATCH 2/2] fix more --- cpp/examples/parquet/parquet_arrow/README.md | 2 +- cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc | 4 ++-- cpp/subprojects/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/examples/parquet/parquet_arrow/README.md b/cpp/examples/parquet/parquet_arrow/README.md index e99819fd230..43b0901e379 100644 --- a/cpp/examples/parquet/parquet_arrow/README.md +++ b/cpp/examples/parquet/parquet_arrow/README.md @@ -17,4 +17,4 @@ Using parquet-cpp with the arrow interface This folder contains an example project that shows how to setup a CMake project that consumes `parquet-cpp` as a library as well as how you can use the -`parquet/arrow` interface to reading and write Apache Parquet files. +`parquet/arrow` interface to read and write Apache Parquet files. diff --git a/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc b/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc index 01a19337f4f..c8d23306937 100644 --- a/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc +++ b/cpp/src/arrow/flight/sql/odbc/tests/tables_test.cc @@ -340,9 +340,9 @@ TEST_F(TablesMockTest, SQLTablesTestGetMetadataForUnicodeTableByTableName) { TEST_F(TablesMockTest, SQLTablesTestGetMetadataForInvalidTableNameNoData) { this->CreateTestTables(); - SQLWCHAR invalid_table_name[] = L"NonExistanttable_name"; + SQLWCHAR invalid_table_name[] = L"NonExistenttable_name"; - // Try to get metadata for a non-existant table name + // Try to get metadata for a non-existent table name ASSERT_EQ(SQL_SUCCESS, SQLTables(this->stmt, nullptr, SQL_NTS, nullptr, SQL_NTS, invalid_table_name, SQL_NTS, nullptr, SQL_NTS)); diff --git a/cpp/subprojects/README.md b/cpp/subprojects/README.md index 9a022c7336b..158d07594cb 100644 --- a/cpp/subprojects/README.md +++ b/cpp/subprojects/README.md @@ -70,7 +70,7 @@ In the default case, Meson will use the wrap file as a fallback. If a dependency can be satisfied by the system, then it will not use the wrap file to download any sources. However, you can toggle the behavior of the wrap system via the `--wrap-mode=` configuration option. `--wrap-mode=forcefallback` will always -download and use the source defined in a wrap file, even if the depdendency could +download and use the source defined in a wrap file, even if the dependency could be satisfied by the system. By contrast, `--wrap-mode=nofallback` will require that the system satisfies dependencies. For more ways to handle wrap dependencies, see https://mesonbuild.com/Subprojects.html#commandline-options