This is an automated email from the ASF dual-hosted git repository. changchen pushed a commit to branch fix/11550-system-property-trait in repository https://gitbox.apache.org/repos/asf/gluten.git
commit 6ef014cfcd6be7b47056d078761b8a7908c98b3d Author: Chang chen <[email protected]> AuthorDate: Mon Mar 30 05:34:29 2026 +0000 [GLUTEN-11550][UT] Remove TestHiveSingleton suites that cannot load GlutenPlugin Remove 7 test suites (spark40 + spark41) that extend TestHiveSingleton. TestHiveSingleton.spark (protected val) conflicts with Gluten test traits' spark (implicit protected def), making it impossible to load GlutenPlugin. The non-Hive variants (e.g. GlutenBucketedReadWithoutHiveSupportSuite) are already enabled and cover the same functionality. Removed suites: - GlutenBucketedReadWithHiveSupportSuite - GlutenBucketedWriteWithHiveSupportSuite - GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite - GlutenCommitFailureTestRelationSuite - GlutenJsonHadoopFsRelationSuite - GlutenParquetHadoopFsRelationSuite - GlutenSimpleTextHadoopFsRelationSuite Co-authored-by: Copilot <[email protected]> --- gluten-ut/excluded-spark-uts.md | 3 ++- .../gluten/utils/velox/VeloxTestSettings.scala | 7 ------- .../GlutenBucketedReadWithHiveSupportSuite.scala | 23 ---------------------- .../GlutenBucketedWriteWithHiveSupportSuite.scala | 23 ---------------------- .../GlutenCommitFailureTestRelationSuite.scala | 23 ---------------------- ...necessaryBucketedScanWithHiveSupportSuite.scala | 23 ---------------------- .../sources/GlutenJsonHadoopFsRelationSuite.scala | 23 ---------------------- .../GlutenParquetHadoopFsRelationSuite.scala | 23 ---------------------- .../GlutenSimpleTextHadoopFsRelationSuite.scala | 23 ---------------------- .../gluten/utils/velox/VeloxTestSettings.scala | 7 ------- .../GlutenBucketedReadWithHiveSupportSuite.scala | 23 ---------------------- .../GlutenBucketedWriteWithHiveSupportSuite.scala | 23 ---------------------- .../GlutenCommitFailureTestRelationSuite.scala | 23 ---------------------- ...necessaryBucketedScanWithHiveSupportSuite.scala | 23 ---------------------- .../sources/GlutenJsonHadoopFsRelationSuite.scala | 23 ---------------------- .../GlutenParquetHadoopFsRelationSuite.scala | 23 ---------------------- .../GlutenSimpleTextHadoopFsRelationSuite.scala | 23 ---------------------- 17 files changed, 2 insertions(+), 337 deletions(-) diff --git a/gluten-ut/excluded-spark-uts.md b/gluten-ut/excluded-spark-uts.md index 598eca6493..26527bcce1 100644 --- a/gluten-ut/excluded-spark-uts.md +++ b/gluten-ut/excluded-spark-uts.md @@ -3,4 +3,5 @@ | Suites | Versions | Reason to exclude [...] |--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- [...] -| org.apache.spark.sql.SingleLevelAggregateHashMapSuite<br/>org.apache.spark.sql.TwoLevelAggregateHashMapSuite<br/>org.apache.spark.sql.TwoLevelAggregateHashMapWithVectorizedMapSuite | 4.0, 4.1 | This UTs is similar to `DataFrameAggregateSuite`.<br/>The only difference being that it contains variation for Spark codegen enabled and disabled and enabling single level or two level aggregate hash-maps which is also specific to Spark Aggregate implementation.<br/>We already run `GlutenDataFra [...] \ No newline at end of file +| org.apache.spark.sql.SingleLevelAggregateHashMapSuite<br/>org.apache.spark.sql.TwoLevelAggregateHashMapSuite<br/>org.apache.spark.sql.TwoLevelAggregateHashMapWithVectorizedMapSuite | 4.0, 4.1 | This UTs is similar to `DataFrameAggregateSuite`.<br/>The only difference being that it contains variation for Spark codegen enabled and disabled and enabling single level or two level aggregate hash-maps which is also specific to Spark Aggregate implementation.<br/>We already run `GlutenDataFra [...] +| org.apache.spark.sql.sources.GlutenBucketedReadWithHiveSupportSuite<br/>org.apache.spark.sql.sources.GlutenBucketedWriteWithHiveSupportSuite<br/>org.apache.spark.sql.sources.GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite<br/>org.apache.spark.sql.sources.GlutenCommitFailureTestRelationSuite<br/>org.apache.spark.sql.sources.GlutenJsonHadoopFsRelationSuite<br/>org.apache.spark.sql.sources.GlutenParquetHadoopFsRelationSuite<br/>org.apache.spark.sql.sources.GlutenSimpleTextHadoopF [...] \ No newline at end of file diff --git a/gluten-ut/spark40/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala b/gluten-ut/spark40/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala index 81adb9f958..e444bf46e0 100644 --- a/gluten-ut/spark40/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala +++ b/gluten-ut/spark40/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala @@ -790,14 +790,7 @@ class VeloxTestSettings extends BackendTestSettings { enableSuite[GlutenSaveLoadSuite] enableSuite[GlutenTableScanSuite] // Generated suites for org.apache.spark.sql.sources - // TODO: 4.x enableSuite[GlutenBucketedReadWithHiveSupportSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenBucketedWriteWithHiveSupportSuite] // 1 failure - // TODO: 4.x enableSuite[GlutenCommitFailureTestRelationSuite] // 2 failures enableSuite[GlutenDataSourceAnalysisSuite] - // TODO: 4.x enableSuite[GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenJsonHadoopFsRelationSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenParquetHadoopFsRelationSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenSimpleTextHadoopFsRelationSuite] // 2 failures // Generated suites for org.apache.spark.sql enableSuite[GlutenCacheManagerSuite] enableSuite[GlutenDataFrameShowSuite] diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala deleted file mode 100644 index 115f933638..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenBucketedReadWithHiveSupportSuite - extends BucketedReadWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala deleted file mode 100644 index 0ccbb1cf43..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenBucketedWriteWithHiveSupportSuite - extends BucketedWriteWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala deleted file mode 100644 index 0b7232772f..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenCommitFailureTestRelationSuite - extends CommitFailureTestRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala deleted file mode 100644 index 3ce4d072bc..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite - extends DisableUnnecessaryBucketedScanWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala deleted file mode 100644 index 4bc841c4ad..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenJsonHadoopFsRelationSuite - extends JsonHadoopFsRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala deleted file mode 100644 index 8aef43c990..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenParquetHadoopFsRelationSuite - extends ParquetHadoopFsRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala b/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala deleted file mode 100644 index 40a99eb003..0000000000 --- a/gluten-ut/spark40/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenSimpleTextHadoopFsRelationSuite - extends SimpleTextHadoopFsRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala b/gluten-ut/spark41/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala index cca8acfdb0..c11d8da3b5 100644 --- a/gluten-ut/spark41/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala +++ b/gluten-ut/spark41/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala @@ -775,14 +775,7 @@ class VeloxTestSettings extends BackendTestSettings { enableSuite[GlutenSaveLoadSuite] enableSuite[GlutenTableScanSuite] // Generated suites for org.apache.spark.sql.sources - // TODO: 4.x enableSuite[GlutenBucketedReadWithHiveSupportSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenBucketedWriteWithHiveSupportSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenCommitFailureTestRelationSuite] // 2 failures enableSuite[GlutenDataSourceAnalysisSuite] - // TODO: 4.x enableSuite[GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenJsonHadoopFsRelationSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenParquetHadoopFsRelationSuite] // 2 failures - // TODO: 4.x enableSuite[GlutenSimpleTextHadoopFsRelationSuite] // 2 failures // Generated suites for org.apache.spark.sql enableSuite[GlutenCacheManagerSuite] enableSuite[GlutenDataFrameShowSuite] diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala deleted file mode 100644 index 115f933638..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedReadWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenBucketedReadWithHiveSupportSuite - extends BucketedReadWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala deleted file mode 100644 index 0ccbb1cf43..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenBucketedWriteWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenBucketedWriteWithHiveSupportSuite - extends BucketedWriteWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala deleted file mode 100644 index 0b7232772f..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenCommitFailureTestRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenCommitFailureTestRelationSuite - extends CommitFailureTestRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala deleted file mode 100644 index 3ce4d072bc..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenDisableUnnecessaryBucketedScanWithHiveSupportSuite - extends DisableUnnecessaryBucketedScanWithHiveSupportSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala deleted file mode 100644 index 4bc841c4ad..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenJsonHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenJsonHadoopFsRelationSuite - extends JsonHadoopFsRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala deleted file mode 100644 index 8aef43c990..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenParquetHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenParquetHadoopFsRelationSuite - extends ParquetHadoopFsRelationSuite - with GlutenTestsCommonTrait {} diff --git a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala b/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala deleted file mode 100644 index 40a99eb003..0000000000 --- a/gluten-ut/spark41/src/test/scala/org/apache/spark/sql/sources/GlutenSimpleTextHadoopFsRelationSuite.scala +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package org.apache.spark.sql.sources - -import org.apache.spark.sql.GlutenTestsCommonTrait - -class GlutenSimpleTextHadoopFsRelationSuite - extends SimpleTextHadoopFsRelationSuite - with GlutenTestsCommonTrait {} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
