diff --git a/cpp/velox/jni/JniFileSystem.cc b/cpp/velox/jni/JniFileSystem.cc index 5fc3bf62e00..a06af3522a3 100644 --- a/cpp/velox/jni/JniFileSystem.cc +++ b/cpp/velox/jni/JniFileSystem.cc @@ -89,7 +89,8 @@ class JniReadFile : public facebook::velox::ReadFile { uint64_t offset, uint64_t length, void* buf, - facebook::velox::filesystems::File::IoStats* stats = nullptr) const override { + facebook::velox::filesystems::File::IoStats* stats = nullptr, + const folly::F14FastMap& fileReadOps = {}) const override { JNIEnv* env = nullptr; attachCurrentThreadAsDaemonOrThrow(vm, &env); env->CallVoidMethod( diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index c698d90bdf9..a361910f828 100755 --- a/ep/build-velox/src/get_velox.sh +++ b/ep/build-velox/src/get_velox.sh @@ -17,11 +17,11 @@ set -exu VELOX_REPO=https://github.com/oap-project/velox.git -VELOX_BRANCH=2025_09_21 +VELOX_BRANCH=2025_09_23 VELOX_HOME="" RUN_SETUP_SCRIPT=ON VELOX_ENHANCED_REPO=https://github.com/IBM/velox.git -VELOX_ENHANCED_BRANCH=ibm-2025_09_21 +VELOX_ENHANCED_BRANCH=ibm-2025_09_23 ENABLE_ENHANCED_FEATURES=OFF # Developer use only for testing Velox PR.