Skip to content

Commit 4823fab

Browse files
[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)
1 parent 498efc7 commit 4823fab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/velox/operators/writer/VeloxParquetDataSource.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void VeloxParquetDataSource::init(const std::unordered_map<std::string, std::str
6060
maxRowGroupRows_ = static_cast<int64_t>(stoi(sparkConfs.find(kParquetBlockRows)->second));
6161
}
6262
velox::parquet::WriterOptions writeOption;
63-
writeOption.parquetWriteTimestampUnit = TimestampUnit::kMicro /*micro*/;
63+
writeOption.parquetWriteTimestampUnit = TimestampPrecision::kMicroseconds /*micro*/;
6464
auto compressionCodec = CompressionKind::CompressionKind_SNAPPY;
6565
if (sparkConfs.find(kParquetCompressionCodec) != sparkConfs.end()) {
6666
auto compressionCodecStr = sparkConfs.find(kParquetCompressionCodec)->second;

ep/build-velox/src/get_velox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -exu
1818

1919
VELOX_REPO=https://github.com/oap-project/velox.git
20-
VELOX_BRANCH=2024_12_13
20+
VELOX_BRANCH=2024_12_14
2121
VELOX_HOME=""
2222

2323
OS=`uname -s`

0 commit comments

Comments
 (0)