From fac41f50a9048e80f8616b9369222fec45656d94 Mon Sep 17 00:00:00 2001 From: bbalouki Date: Sat, 11 Jul 2026 20:20:52 +0100 Subject: [PATCH 1/3] fix: silence sign-conversion warning in WriteTable chunk size Co-Authored-By: Claude Sonnet 5 --- src/io/arrow_export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/arrow_export.cpp b/src/io/arrow_export.cpp index 1cbb033..c10b3c0 100644 --- a/src/io/arrow_export.cpp +++ b/src/io/arrow_export.cpp @@ -243,7 +243,7 @@ auto ArrowExporter::write_parquet(const std::string& path) -> bool { *table, arrow::default_memory_pool(), *outfile_result, - impl.row_count > 0 ? impl.row_count : 1 + static_cast(impl.row_count > 0 ? impl.row_count : 1) ); if (!status.ok()) { impl.last_error = status.ToString(); From d353daceada3ad699c980d7ea660cb2c5541c8c3 Mon Sep 17 00:00:00 2001 From: bbalouki Date: Sat, 11 Jul 2026 21:55:13 +0100 Subject: [PATCH 2/3] update version --- VERSION.txt | 2 +- vcpkg.json => vcpkg.json.t | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename vcpkg.json => vcpkg.json.t (100%) diff --git a/VERSION.txt b/VERSION.txt index 9c6d629..fdd3be6 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.6.1 +1.6.2 diff --git a/vcpkg.json b/vcpkg.json.t similarity index 100% rename from vcpkg.json rename to vcpkg.json.t From ea685810d7f86eaf4932a9a58d6aeab447c54405 Mon Sep 17 00:00:00 2001 From: bbalouki Date: Sat, 11 Jul 2026 21:56:58 +0100 Subject: [PATCH 3/3] updates --- vcpkg.json.t => vcpkg.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename vcpkg.json.t => vcpkg.json (100%) diff --git a/vcpkg.json.t b/vcpkg.json similarity index 100% rename from vcpkg.json.t rename to vcpkg.json