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

wenchen 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 5a62295  [SPARK-27580][HOT-FIX] Fix wrong import order in 
FileScan.scala
5a62295 is described below

commit 5a6229521953ffc3e651b70e8db5eb0f0ebaeb24
Author: Yuming Wang <[email protected]>
AuthorDate: Mon Apr 29 20:48:12 2019 +0800

    [SPARK-27580][HOT-FIX] Fix wrong import order in FileScan.scala
    
    ## What changes were proposed in this pull request?
    ```
    ========================================================================
    Running Scala style checks
    ========================================================================
    [info] Checking Scala style using SBT with these profiles:  -Phadoop-2.7 
-Pkubernetes -Phive-thriftserver -Pkinesis-asl -Pyarn -Pspark-ganglia-lgpl 
-Phive -Pmesos
    Scalastyle checks failed at following occurrences:
    [error] 
/home/jenkins/workspace/SparkPullRequestBuilder/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala:29:0:
 org.apache.spark.sql.sources.Filter is in wrong order relative to 
org.apache.spark.sql.sources.v2.reader..
    [error] Total time: 17 s, completed Apr 29, 2019 3:09:43 AM
    ```
    
https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/104987/console
    
    ## How was this patch tested?
    manual tests:
    ```
    dev/scalastyle
    ```
    
    Closes #24487 from wangyum/SPARK-27580.
    
    Authored-by: Yuming Wang <[email protected]>
    Signed-off-by: Wenchen Fan <[email protected]>
---
 .../scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala
 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala
index 70d5932..b2b45e8 100644
--- 
a/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala
+++ 
b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/FileScan.scala
@@ -25,8 +25,8 @@ import 
org.apache.spark.sql.catalyst.expressions.AttributeReference
 import 
org.apache.spark.sql.catalyst.expressions.codegen.GenerateUnsafeProjection
 import org.apache.spark.sql.execution.PartitionedFileUtil
 import org.apache.spark.sql.execution.datasources._
-import org.apache.spark.sql.sources.v2.reader.{Batch, InputPartition, Scan}
 import org.apache.spark.sql.sources.Filter
+import org.apache.spark.sql.sources.v2.reader.{Batch, InputPartition, Scan}
 import org.apache.spark.sql.types.StructType
 import org.apache.spark.sql.util.CaseInsensitiveStringMap
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to