Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLUTEN-6887][VL] Daily Update Velox Version (2024_10_03) #7406

Merged
merged 5 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cpp/velox/substrait/SubstraitToVeloxPlan.cc
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,6 @@ core::PlanNodePtr SubstraitToVeloxPlanConverter::toVeloxPlan(const ::substrait::
dwio::common::FileFormat::PARQUET, // Currently only support parquet format.
compressionCodec)),
(!partitionedKey.empty()),
false, /*hasBucketProperty_*/
exec::TableWriteTraits::outputType(nullptr),
connector::CommitStrategy::kNoCommit,
childNode);
Expand Down
2 changes: 1 addition & 1 deletion ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -exu

VELOX_REPO=https://github.com/oap-project/velox.git
VELOX_BRANCH=2024_10_02
VELOX_BRANCH=2024_10_03
VELOX_HOME=""

OS=`uname -s`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,8 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenParquetInteroperabilitySuite]
.exclude("parquet timestamp conversion")
enableSuite[GlutenParquetIOSuite]
// TODO:(yuan)
.exclude("vectorized reader: missing all struct fields")
// Exception.
.exclude("SPARK-35640: read binary as timestamp should throw schema incompatible error")
// Exception msg.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,8 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenParquetInteroperabilitySuite]
.exclude("parquet timestamp conversion")
enableSuite[GlutenParquetIOSuite]
// TODO:(yuan)
.exclude("vectorized reader: missing all struct fields")
// Velox doesn't write file metadata into parquet file.
.exclude("Write Spark version into Parquet metadata")
// Exception.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,8 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenParquetInteroperabilitySuite]
.exclude("parquet timestamp conversion")
enableSuite[GlutenParquetIOSuite]
// TODO:(yuan)
.exclude("vectorized reader: missing all struct fields")
// Velox doesn't write file metadata into parquet file.
.exclude("Write Spark version into Parquet metadata")
// Exception.
Expand Down
Loading