This is an automated email from the ASF dual-hosted git repository.
yuanzhou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 19e1caea85 [GLUTEN-6887][VL] Daily Update Velox Version (2024_11_15)
(#7954)
19e1caea85 is described below
commit 19e1caea853570e180ae16ccea5a4178bcfe1f8f
Author: Gluten Performance Bot
<[email protected]>
AuthorDate: Fri Nov 15 19:29:20 2024 +0800
[GLUTEN-6887][VL] Daily Update Velox Version (2024_11_15) (#7954)
Upstream Velox's New Commits:
9ebe36609 by zuyu, Fix OutputBuffer comments regarding bufferedBytes_
(11423)
935d30ee1 by zhli1142015, Combine low selectivity vectors generated by the
hash join filter (10987)
5ac572b47 by rui-mo, Fix Spark expression fuzzer test on
deny_precision_loss functions (11526)
fe87f0b75 by hengjiang.ly, Add a faster string-search method with simd
instructions than std::find (10858)
5b274e3cf by NEUpanning, Allow partial date parsing when simple datetime
formatter is used (11386)
c069192e9 by Jimmy Lu, Buckify breeze (11512)
f37dc004e by Xiaoxuan Meng, Allow single thread execution mode for local
partition to support spark union for gluten (11531)
837480242 by Christian Zentgraf, Add Clang Linux build to CI pipeline
(10767)
427ac31e6 by Yenda Li, Add support for TTL in directories (11498)
---
cpp/velox/jni/JniFileSystem.cc | 4 ++--
ep/build-velox/src/get_velox.sh | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/cpp/velox/jni/JniFileSystem.cc b/cpp/velox/jni/JniFileSystem.cc
index 21cdf2b23a..fa849664e3 100644
--- a/cpp/velox/jni/JniFileSystem.cc
+++ b/cpp/velox/jni/JniFileSystem.cc
@@ -241,7 +241,7 @@ class FileSystemWrapper : public
facebook::velox::filesystems::FileSystem {
return fs_->list(rewrite(path));
}
- void mkdir(std::string_view path) override {
+ void mkdir(std::string_view path, const
facebook::velox::filesystems::DirectoryOptions& options = {}) override {
fs_->mkdir(rewrite(path));
}
@@ -349,7 +349,7 @@ class JniFileSystem : public
facebook::velox::filesystems::FileSystem {
return out;
}
- void mkdir(std::string_view path) override {
+ void mkdir(std::string_view path, const
facebook::velox::filesystems::DirectoryOptions& options = {}) override {
JNIEnv* env = nullptr;
attachCurrentThreadAsDaemonOrThrow(vm, &env);
env->CallVoidMethod(obj_, jniFileSystemMkdir, createJString(env, path));
diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh
index 06a7215d82..9e0f3c0160 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_11_14
+VELOX_BRANCH=2024_11_15
VELOX_HOME=""
OS=`uname -s`
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]