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/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();