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

[VL] Enable window.sql in GlutenSQLQueryTestSuite #5500

Closed
wants to merge 2 commits into from
Closed
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
4 changes: 2 additions & 2 deletions ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

set -exu

VELOX_REPO=https://github.com/oap-project/velox.git
VELOX_BRANCH=2024_04_23
VELOX_REPO=https://github.com/JkSelf/velox.git
VELOX_BRANCH=stable_sort
VELOX_HOME=""

#Set on run gluten on HDFS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,7 @@ class GlutenSQLQueryTestSuite
"explain.sql", // explain
"group-analytics.sql", // wait velox to fix issue 3357
"array.sql", // blocked by VELOX-5768
"higher-order-functions.sql", // blocked by VELOX-5768
"udf/udf-window.sql" // Local window fixes are not added.
"higher-order-functions.sql" // blocked by VELOX-5768
) ++ otherIgnoreList

// List of supported cases to run with a certain backend, in lower case.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,7 @@ class GlutenSQLQueryTestSuite
"explain.sql", // explain
"group-analytics.sql", // wait velox to fix issue 3357
"array.sql", // blocked by VELOX-5768
"higher-order-functions.sql", // blocked by VELOX-5768
"udf/udf-window.sql", // Local window fixes are not added.
"window.sql" // Local window fixes are not added.
"higher-order-functions.sql" // blocked by VELOX-5768
) ++ otherIgnoreList

// List of supported cases to run with a certain backend, in lower case.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,7 @@ class GlutenSQLQueryTestSuite
"explain.sql", // explain
"group-analytics.sql", // wait velox to fix issue 3357
"array.sql", // blocked by VELOX-5768
"higher-order-functions.sql", // blocked by VELOX-5768
"udf/udf-window.sql", // Local window fixes are not added.
"window.sql" // Local window fixes are not added.
"higher-order-functions.sql" // blocked by VELOX-5768
) ++ otherIgnoreList ++ udafIgnoreList

// List of supported cases to run with a certain backend, in lower case.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,6 @@ class GlutenSQLQueryTestSuite
"group-analytics.sql", // wait velox to fix issue 3357
"array.sql", // blocked by VELOX-5768
"higher-order-functions.sql", // blocked by VELOX-5768
"udf/udf-window.sql", // Local window fixes are not added.
"window.sql", // Local window fixes are not added.
// Disable for Spark 3.
"group-by.sql",
"udf/udf-group-by.sql - Scala UDF"
Expand Down
Loading