This is an automated email from the ASF dual-hosted git repository.

yangjie01 pushed a commit to branch branch-3.5
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.5 by this push:
     new 816ee7e2716 [SPARK-44693][BUILD] Rename the `object Catalyst` in 
SparkBuild to `object SqlApi`
816ee7e2716 is described below

commit 816ee7e2716f2652e7cebe85fe949b6d9b44ffab
Author: yangjie01 <yangji...@baidu.com>
AuthorDate: Mon Aug 7 10:27:53 2023 +0800

    [SPARK-44693][BUILD] Rename the `object Catalyst` in SparkBuild to `object 
SqlApi`
    
    ### What changes were proposed in this pull request?
    This PR renames the Setting object used by the `SqlApi` module in 
`SparkBuild/scala` from `object Catalyst` to `object SqlApi`.
    
    ### Why are the changes needed?
    The `SqlApi` module should use a more appropriate Setting object name.
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    - Pass GitHub Actions
    
    Closes #42361 from LuciferYang/rename-catalyst-2-sqlapi.
    
    Authored-by: yangjie01 <yangji...@baidu.com>
    Signed-off-by: yangjie01 <yangji...@baidu.com>
    (cherry picked from commit a98b11274d95f7c9f6e550ef6394e803bc0c17ca)
    Signed-off-by: yangjie01 <yangji...@baidu.com>
---
 project/SparkBuild.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 79007626026..bd65d3c4bd4 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -449,7 +449,7 @@ object SparkBuild extends PomBuild {
   enable(Unidoc.settings)(spark)
 
   /* Sql-api ANTLR generation settings */
-  enable(Catalyst.settings)(sqlApi)
+  enable(SqlApi.settings)(sqlApi)
 
   /* Spark SQL Core console settings */
   enable(SQL.settings)(sql)
@@ -1169,7 +1169,7 @@ object OldDeps {
   )
 }
 
-object Catalyst {
+object SqlApi {
   import com.simplytyped.Antlr4Plugin
   import com.simplytyped.Antlr4Plugin.autoImport._
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to