This is an automated email from the ASF dual-hosted git repository.
hongze 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 e03a238f5 [VL] gluten-it: Remove specific result matching code for Q65
(#5226)
e03a238f5 is described below
commit e03a238f55103e473ef5606ab10a6208ef5fc242
Author: Hongze Zhang <[email protected]>
AuthorDate: Mon Apr 1 15:34:22 2024 +0800
[VL] gluten-it: Remove specific result matching code for Q65 (#5226)
---
.../org/apache/gluten/integration/tpc/action/QueriesCompare.scala | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git
a/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/tpc/action/QueriesCompare.scala
b/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/tpc/action/QueriesCompare.scala
index 32b7c59c8..14dcfe12c 100644
---
a/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/tpc/action/QueriesCompare.scala
+++
b/tools/gluten-it/common/src/main/scala/org/apache/gluten/integration/tpc/action/QueriesCompare.scala
@@ -189,10 +189,7 @@ object QueriesCompare {
val result = runner.runTpcQuery(sessionSwitcher.spark(), testDesc, id,
explain = explain)
val resultRows = result.rows
val error = TestUtils.compareAnswers(resultRows, expectedRows, sort =
true)
- // FIXME: This is too hacky
- // A list of query ids whose corresponding query results can differ
because of order.
- val unorderedQueries = Seq("q65")
- if (error.isEmpty || unorderedQueries.contains(id)) {
+ if (error.isEmpty) {
println(
s"Successfully ran query $id, result check was passed. " +
s"Returned row count: ${resultRows.length}, expected:
${expectedRows.length}")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]