From 4823fab0c4d23ee2071234f721e7d017ef8a9a6c Mon Sep 17 00:00:00 2001 From: Gluten Performance Bot <137994563+GlutenPerfBot@users.noreply.github.com> Date: Mon, 16 Dec 2024 07:47:22 +0800 Subject: [PATCH] [GLUTEN-6887][VL] Daily Update Velox Version (2024_12_14) (#8233) Upstream Velox's New Commits: bddddf8bb by PHILO-HE, feat: Add Spark concat_ws function (8854) aa596788e by Chengcheng Jin, refactor: Refactor CompactRow and UnsafeRow serializer and deserializer (11840) 42bd38ad1 by Kevin Wilfong, fix: Date_add throws or produces wrong results when the result would be nonexistent time in the time zone (11845) 67a0c0473 by Zuyu ZHANG, fix: Typos in Timestamp (11830) 960c2af9b by zhli1142015, feat(prefix sort): Support string type key in prefix sort (11527) e86ff0516 by Zuyu ZHANG, fix: Align TimestampUnit and TimestampPrecision in unit tests (11698) 401d6c7f2 by Jacob Wujciak-Jens, build(ci): Update workflows to use actions/*-artifact@v4 (11769) --- cpp/velox/operators/writer/VeloxParquetDataSource.cc | 2 +- ep/build-velox/src/get_velox.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/velox/operators/writer/VeloxParquetDataSource.cc b/cpp/velox/operators/writer/VeloxParquetDataSource.cc index 07f49c06ed1f..af8e233ad082 100644 --- a/cpp/velox/operators/writer/VeloxParquetDataSource.cc +++ b/cpp/velox/operators/writer/VeloxParquetDataSource.cc @@ -60,7 +60,7 @@ void VeloxParquetDataSource::init(const std::unordered_map(stoi(sparkConfs.find(kParquetBlockRows)->second)); } velox::parquet::WriterOptions writeOption; - writeOption.parquetWriteTimestampUnit = TimestampUnit::kMicro /*micro*/; + writeOption.parquetWriteTimestampUnit = TimestampPrecision::kMicroseconds /*micro*/; auto compressionCodec = CompressionKind::CompressionKind_SNAPPY; if (sparkConfs.find(kParquetCompressionCodec) != sparkConfs.end()) { auto compressionCodecStr = sparkConfs.find(kParquetCompressionCodec)->second; diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index c0fcfda64f47..ea559c63af4e 100755 --- a/ep/build-velox/src/get_velox.sh +++ b/ep/build-velox/src/get_velox.sh @@ -17,7 +17,7 @@ set -exu VELOX_REPO=https://github.com/oap-project/velox.git -VELOX_BRANCH=2024_12_13 +VELOX_BRANCH=2024_12_14 VELOX_HOME="" OS=`uname -s`