Repository: parquet-cpp Updated Branches: refs/heads/master d995af0bc -> 72edf0e22
PARQUET-877: Update Arrow Hash, update Version in metadata. Author: Uwe L. Korn <[email protected]> Closes #243 from xhochy/PARQUET-877 and squashes the following commits: 0df866a [Uwe L. Korn] PARQUET-877: Update Arrow Hash, update Version in metadata. Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/72edf0e2 Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/72edf0e2 Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/72edf0e2 Branch: refs/heads/master Commit: 72edf0e2286f3b991bb91bcd17b3278b0e3a3f9e Parents: d995af0 Author: Uwe L. Korn <[email protected]> Authored: Tue Feb 14 10:48:47 2017 +0100 Committer: Uwe L. Korn <[email protected]> Committed: Tue Feb 14 10:48:47 2017 +0100 ---------------------------------------------------------------------- cmake_modules/ThirdpartyToolchain.cmake | 2 +- src/parquet/column/properties.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/72edf0e2/cmake_modules/ThirdpartyToolchain.cmake ---------------------------------------------------------------------- diff --git a/cmake_modules/ThirdpartyToolchain.cmake b/cmake_modules/ThirdpartyToolchain.cmake index 526e8c6..b150600 100644 --- a/cmake_modules/ThirdpartyToolchain.cmake +++ b/cmake_modules/ThirdpartyToolchain.cmake @@ -22,7 +22,7 @@ set(THRIFT_VERSION "0.9.1") # Brotli 0.5.2 does not install headers/libraries yet, but 0.6.0.dev does set(BROTLI_VERSION "5db62dcc9d386579609540cdf8869e95ad334bbd") -set(ARROW_VERSION "0bdfd5efb2d7360f8ec8f6a65401d4c76a8df597") +set(ARROW_VERSION "66f650cd359e13f3d5c3d4ef78d89f389d6bcecc") # find boost headers and libs set(Boost_DEBUG TRUE) http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/72edf0e2/src/parquet/column/properties.h ---------------------------------------------------------------------- diff --git a/src/parquet/column/properties.h b/src/parquet/column/properties.h index 6165603..8573d2e 100644 --- a/src/parquet/column/properties.h +++ b/src/parquet/column/properties.h @@ -85,7 +85,7 @@ static constexpr bool DEFAULT_ARE_STATISTICS_ENABLED = true; static constexpr Encoding::type DEFAULT_ENCODING = Encoding::PLAIN; static constexpr ParquetVersion::type DEFAULT_WRITER_VERSION = ParquetVersion::PARQUET_1_0; -static std::string DEFAULT_CREATED_BY = "parquet-cpp version 0.1.0"; +static std::string DEFAULT_CREATED_BY = "parquet-cpp version 1.0.0"; static constexpr Compression::type DEFAULT_COMPRESSION_TYPE = Compression::UNCOMPRESSED; class PARQUET_EXPORT ColumnProperties {
