forked from NVIDIA/spark-rapids
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refine ut framework including Part 1 and Part 2 (NVIDIA#10861)
* refine UT framework to promote GPU evaluation Signed-off-by: Hongbin Ma (Mahone) <[email protected]> * enable some exprs for json Signed-off-by: Hongbin Ma (Mahone) <[email protected]> * exclude flaky tests Signed-off-by: Hongbin Ma (Mahone) <[email protected]> * fix review comments Signed-off-by: Hongbin Ma (Mahone) <[email protected]> * use vectorized parameter where possible Signed-off-by: Hongbin Ma (Mahone) <[email protected]> * add todo for utc issue Signed-off-by: Hongbin Ma (Mahone) <[email protected]> --------- Signed-off-by: Hongbin Ma (Mahone) <[email protected]>
- Loading branch information
Showing
58 changed files
with
404 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
...c/test/spark330/scala/org/apache/spark/sql/rapids/suites/RapidsJsonExpressionsSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/*** spark-rapids-shim-json-lines | ||
{"spark": "330"} | ||
spark-rapids-shim-json-lines ***/ | ||
package org.apache.spark.sql.rapids.suites | ||
|
||
import org.apache.spark.sql.catalyst.expressions.JsonExpressionsSuite | ||
import org.apache.spark.sql.rapids.utils.{RapidsJsonConfTrait, RapidsTestsTrait} | ||
|
||
class RapidsJsonExpressionsSuite | ||
extends JsonExpressionsSuite with RapidsTestsTrait with RapidsJsonConfTrait {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
tests/src/test/spark330/scala/org/apache/spark/sql/rapids/utils/RapidsJsonConfTrait.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* | ||
* Copyright (c) 2024, NVIDIA CORPORATION. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/*** spark-rapids-shim-json-lines | ||
{"spark": "330"} | ||
spark-rapids-shim-json-lines ***/ | ||
package org.apache.spark.sql.rapids.utils | ||
|
||
import org.scalatest.{BeforeAndAfterAll, Suite} | ||
|
||
import org.apache.spark.sql.internal.SQLConf | ||
|
||
trait RapidsJsonConfTrait extends BeforeAndAfterAll { this: Suite => | ||
override def beforeAll(): Unit = { | ||
super.beforeAll() | ||
SQLConf.get.setConfString("spark.rapids.sql.expression.JsonTuple", true.toString) | ||
SQLConf.get.setConfString("spark.rapids.sql.expression.GetJsonObject", true.toString) | ||
SQLConf.get.setConfString("spark.rapids.sql.expression.JsonToStructs", true.toString) | ||
SQLConf.get.setConfString("spark.rapids.sql.expression.StructsToJson", true.toString) | ||
} | ||
|
||
override def afterAll(): Unit = { | ||
SQLConf.get.unsetConf("spark.rapids.sql.expression.JsonTuple") | ||
SQLConf.get.unsetConf("spark.rapids.sql.expression.GetJsonObject") | ||
SQLConf.get.unsetConf("spark.rapids.sql.expression.JsonToStructs") | ||
SQLConf.get.unsetConf("spark.rapids.sql.expression.StructsToJson") | ||
super.afterAll() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.