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 07cc04d3e3f [MINOR][SQL][TESTS] Move ResolveDefaultColumnsSuite to 'o.a.s.sql' 07cc04d3e3f is described below commit 07cc04d3e3f37684946e09a9ab1144efaed6f6ec Author: Dongjoon Hyun <dongj...@apache.org> AuthorDate: Thu Jun 8 12:25:36 2023 -0700 [MINOR][SQL][TESTS] Move ResolveDefaultColumnsSuite to 'o.a.s.sql' ### What changes were proposed in this pull request? This PR moves `ResolveDefaultColumnsSuite` from `catalyst/analysis` package to `sql` package. ### Why are the changes needed? To fix the code layout. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CI Closes #41520 from dongjoon-hyun/move. Authored-by: Dongjoon Hyun <dongj...@apache.org> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- .../spark/sql/{catalyst/analysis => }/ResolveDefaultColumnsSuite.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sql/core/src/test/scala/org/apache/spark/sql/catalyst/analysis/ResolveDefaultColumnsSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/ResolveDefaultColumnsSuite.scala similarity index 98% rename from sql/core/src/test/scala/org/apache/spark/sql/catalyst/analysis/ResolveDefaultColumnsSuite.scala rename to sql/core/src/test/scala/org/apache/spark/sql/ResolveDefaultColumnsSuite.scala index 30d32c8283c..b2cc4e3b746 100644 --- a/sql/core/src/test/scala/org/apache/spark/sql/catalyst/analysis/ResolveDefaultColumnsSuite.scala +++ b/sql/core/src/test/scala/org/apache/spark/sql/ResolveDefaultColumnsSuite.scala @@ -15,9 +15,8 @@ * limitations under the License. */ -package org.apache.spark.sql.catalyst.analysis +package org.apache.spark.sql -import org.apache.spark.sql.{AnalysisException, QueryTest, Row} import org.apache.spark.sql.test.SharedSparkSession class ResolveDefaultColumnsSuite extends QueryTest with SharedSparkSession { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org