This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new c30b5f806ab [SPARK-42116][SQL][TESTS] Mark `ColumnarBatchSuite` as
`ExtendedSQLTest`
c30b5f806ab is described below
commit c30b5f806abc5abae2a9e16e5a9f67c789021709
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Thu Jan 19 12:04:14 2023 -0800
[SPARK-42116][SQL][TESTS] Mark `ColumnarBatchSuite` as `ExtendedSQLTest`
### What changes were proposed in this pull request?
This PR aims to mark `ColumnarBatchSuite` as `ExtendedSQLTest`
### Why are the changes needed?
It took over about 7 minutes in GitHub Action environment and worse in the
other CI environment.
- https://github.com/apache/spark/actions/runs/3954751091/jobs/6772414846
```
ColumnarBatchSuite:
...
- Random flat schema (1 minute, 53 seconds)
- Random nested schema (5 minutes, 5 seconds)
```
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Pass the CIs.
Closes #39655 from dongjoon-hyun/SPARK-42116.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.../org/apache/spark/sql/execution/vectorized/ColumnarBatchSuite.scala | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/sql/core/src/test/scala/org/apache/spark/sql/execution/vectorized/ColumnarBatchSuite.scala
b/sql/core/src/test/scala/org/apache/spark/sql/execution/vectorized/ColumnarBatchSuite.scala
index 38807b16ccc..9b2c2c34c7e 100644
---
a/sql/core/src/test/scala/org/apache/spark/sql/execution/vectorized/ColumnarBatchSuite.scala
+++
b/sql/core/src/test/scala/org/apache/spark/sql/execution/vectorized/ColumnarBatchSuite.scala
@@ -43,9 +43,11 @@ import
org.apache.spark.sql.execution.datasources.parquet.VectorizedPlainValuesR
import org.apache.spark.sql.types._
import org.apache.spark.sql.util.ArrowUtils
import org.apache.spark.sql.vectorized.{ArrowColumnVector, ColumnarBatch,
ColumnarBatchRow, ColumnVector}
+import org.apache.spark.tags.ExtendedSQLTest
import org.apache.spark.unsafe.Platform
import org.apache.spark.unsafe.types.{CalendarInterval, UTF8String}
+@ExtendedSQLTest
class ColumnarBatchSuite extends SparkFunSuite {
private def allocate(capacity: Int, dt: DataType, memMode: MemoryMode):
WritableColumnVector = {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]