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 866cd1d147 [VL] Disable requested type check (#9868)
866cd1d147 is described below
commit 866cd1d14704aaf44652e5214d1f2bfe661aa363
Author: Rui Mo <[email protected]>
AuthorDate: Thu Jun 5 15:10:32 2025 +0100
[VL] Disable requested type check (#9868)
This PR disables the requested type check introduced in
facebookincubator/velox@5ad65e4.
Depends on facebookincubator/velox#13620.
---
cpp/velox/compute/WholeStageResultIterator.cc | 1 +
ep/build-velox/src/get_velox.sh | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/cpp/velox/compute/WholeStageResultIterator.cc
b/cpp/velox/compute/WholeStageResultIterator.cc
index 717902e2ef..c60a81d4c9 100644
--- a/cpp/velox/compute/WholeStageResultIterator.cc
+++ b/cpp/velox/compute/WholeStageResultIterator.cc
@@ -603,6 +603,7 @@ std::shared_ptr<velox::config::ConfigBase>
WholeStageResultIterator::createConne
std::to_string(veloxCfg_->get<int32_t>(kMaxPartitions, 10000));
configs[velox::connector::hive::HiveConfig::kIgnoreMissingFilesSession] =
std::to_string(veloxCfg_->get<bool>(kIgnoreMissingFiles, false));
+
configs[velox::connector::hive::HiveConfig::kEnableRequestedTypeCheckSession] =
"false";
return std::make_shared<velox::config::ConfigBase>(std::move(configs));
}
diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh
index 322d08a972..cf22658801 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=2025_06_05
+VELOX_BRANCH=2025_06_05_fix
VELOX_HOME=""
RUN_SETUP_SCRIPT=ON
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]