You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by koertkuipers <gi...@git.apache.org> on 2018/08/16 15:58:26 UTC

[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

GitHub user koertkuipers opened a pull request:

    https://github.com/apache/spark/pull/22123

    [SPARK-25134][SQL] Csv column pruning with checking of headers throws incorrect error

    ## What changes were proposed in this pull request?
    
    When column pruning is turned on the checking of headers in the csv should only be for the fields in the requiredSchema, not the dataSchema, because column pruning means only requiredSchema is read.
    
    ## How was this patch tested?
    
    Added 2 unit tests where column pruning is turned on/off and csv headers are checked againt schema 
    
    Please review http://spark.apache.org/contributing.html before opening a pull request.


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/tresata-opensource/spark feat-csv-column-pruning-and-check-header

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/22123.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #22123
    
----
commit dcd9ac45673af31e59dcfb633a2b87f76f2bee03
Author: Koert Kuipers <ko...@...>
Date:   2018-08-16T15:35:16Z

    if csv column-pruning is turned on header should be checked with requiredSchema not dataSchema

commit c4179a9f0a85b412178323e6cb881385fa644051
Author: Koert Kuipers <ko...@...>
Date:   2018-08-16T15:52:02Z

    update jira reference in unit test

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94935/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94875/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by koertkuipers <gi...@git.apache.org>.
Github user koertkuipers commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r211309642
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala ---
    @@ -1603,6 +1603,39 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils with Te
           .exists(msg => msg.getRenderedMessage.contains("CSV header does not conform to the schema")))
       }
     
    +  test("SPARK-25134: check header on parsing of dataset with projection and column pruning") {
    --- End diff --
    
    it seems enforceSchema always kind of "works" because it simply means it ignores the headers.
    what do we expect to verify in the test?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94935 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94935/testReport)** for PR 22123 at commit [`cd18ed2`](https://github.com/apache/spark/commit/cd18ed282966ba6031973f895266ba3bb1297ff6).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r210788916
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala ---
    @@ -1603,6 +1603,44 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils with Te
           .exists(msg => msg.getRenderedMessage.contains("CSV header does not conform to the schema")))
       }
     
    +  test("SPARK-25134: check header on parsing of dataset with projection and column pruning") {
    +    withSQLConf(SQLConf.CSV_PARSER_COLUMN_PRUNING.key -> "true") {
    +      withTempPath { path =>
    +        val dir = path.getAbsolutePath
    +        Seq(("a", "b")).toDF("columnA", "columnB").write
    +          .format("csv")
    +          .option("header", true)
    +          .save(dir)
    +        checkAnswer(spark.read
    +          .format("csv")
    +          .option("header", true)
    +          .option("enforceSchema", false)
    +          .load(dir)
    +          .select("columnA"),
    +          Row("a"))
    +      }
    +    }
    +  }
    +
    +  test("SPARK-25134: check header on parsing of dataset with projection and no column pruning") {
    +    withSQLConf(SQLConf.CSV_PARSER_COLUMN_PRUNING.key -> "false") {
    --- End diff --
    
    I think `false` case test can be removed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2328/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by MaxGekk <gi...@git.apache.org>.
Github user MaxGekk commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    May I ask you check the `multiLine` mode additionally since we use different methods of uniVocity parser. When `multiLine` is disabled, the `parseLine` method is used but in the `multiLine` mode:
    https://github.com/apache/spark/blob/a8a1ac01c4732f8a738b973c8486514cd88bf99b/sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/UnivocityParser.scala#L303-L307



---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    cc @MaxGekk 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2260/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94875 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94875/testReport)** for PR 22123 at commit [`09c986c`](https://github.com/apache/spark/commit/09c986c7e9586346255ba7631db83f2f88fe1625).
     * This patch **fails due to an unknown error code, -9**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94935 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94935/testReport)** for PR 22123 at commit [`cd18ed2`](https://github.com/apache/spark/commit/cd18ed282966ba6031973f895266ba3bb1297ff6).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94965 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94965/testReport)** for PR 22123 at commit [`667db3c`](https://github.com/apache/spark/commit/667db3c8ec6249321de10b4c48be545dcd19784a).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r211287978
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala ---
    @@ -1603,6 +1603,39 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils with Te
           .exists(msg => msg.getRenderedMessage.contains("CSV header does not conform to the schema")))
       }
     
    +  test("SPARK-25134: check header on parsing of dataset with projection and column pruning") {
    --- End diff --
    
    Also need a test case for checking enforceSchema works well when column pruning is on. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by MaxGekk <gi...@git.apache.org>.
Github user MaxGekk commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r211081732
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala ---
    @@ -1603,6 +1603,25 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils with Te
           .exists(msg => msg.getRenderedMessage.contains("CSV header does not conform to the schema")))
       }
     
    +  test("SPARK-25134: check header on parsing of dataset with projection and column pruning") {
    +    withSQLConf(SQLConf.CSV_PARSER_COLUMN_PRUNING.key -> "true") {
    +      withTempPath { path =>
    +        val dir = path.getAbsolutePath
    +        Seq(("a", "b")).toDF("columnA", "columnB").write
    +          .format("csv")
    +          .option("header", true)
    +          .save(dir)
    +        checkAnswer(spark.read
    +          .format("csv")
    +          .option("header", true)
    +          .option("enforceSchema", false)
    +          .load(dir)
    +          .select("columnA"),
    --- End diff --
    
    Could you check a corner case when required Schema is empty. For example, `.option("enforceSchema", false)` + `count()`.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by koertkuipers <gi...@git.apache.org>.
Github user koertkuipers commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r210801081
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala ---
    @@ -1603,6 +1603,44 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils with Te
           .exists(msg => msg.getRenderedMessage.contains("CSV header does not conform to the schema")))
       }
     
    +  test("SPARK-25134: check header on parsing of dataset with projection and column pruning") {
    +    withSQLConf(SQLConf.CSV_PARSER_COLUMN_PRUNING.key -> "true") {
    +      withTempPath { path =>
    +        val dir = path.getAbsolutePath
    +        Seq(("a", "b")).toDF("columnA", "columnB").write
    +          .format("csv")
    +          .option("header", true)
    +          .save(dir)
    +        checkAnswer(spark.read
    +          .format("csv")
    +          .option("header", true)
    +          .option("enforceSchema", false)
    +          .load(dir)
    +          .select("columnA"),
    +          Row("a"))
    +      }
    +    }
    +  }
    +
    +  test("SPARK-25134: check header on parsing of dataset with projection and no column pruning") {
    +    withSQLConf(SQLConf.CSV_PARSER_COLUMN_PRUNING.key -> "false") {
    --- End diff --
    
    ok will remove


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r211132019
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVDataSource.scala ---
    @@ -230,7 +232,7 @@ object TextInputCSVDataSource extends CSVDataSource {
             CSVDataSource.checkHeader(
    --- End diff --
    
    Can we remove `CSVDataSource.checkHeader` and switch to `CSVDataSource.checkHeaderColumnNames`? Looks `CSVDataSource.checkHeader` is an overkill and marks hard to read the code.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94959/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94854 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94854/testReport)** for PR 22123 at commit [`c4179a9`](https://github.com/apache/spark/commit/c4179a9f0a85b412178323e6cb881385fa644051).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94965 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94965/testReport)** for PR 22123 at commit [`667db3c`](https://github.com/apache/spark/commit/667db3c8ec6249321de10b4c48be545dcd19784a).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22123#discussion_r211283824
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/csv/CSVDataSource.scala ---
    @@ -227,10 +210,9 @@ object TextInputCSVDataSource extends CSVDataSource {
           // Note: if there are only comments in the first block, the header would probably
           // be not extracted.
           CSVUtils.extractHeader(lines, parser.options).foreach { header =>
    -        CSVDataSource.checkHeader(
    -          header,
    -          parser.tokenizer,
    -          dataSchema,
    +        CSVDataSource.checkHeaderColumnNames(
    +          if (columnPruning) requiredSchema else dataSchema,
    +          parser.tokenizer.parseLine(header),
    --- End diff --
    
    Nit: the following code style is preferred.
    ```
    val schema = if (columnPruning) requiredSchema else dataSchema
    val columnNames = parser.tokenizer.parseLine(header)
    ...
    ```


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2307/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94965/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/2249/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/94854/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by koertkuipers <gi...@git.apache.org>.
Github user koertkuipers commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    ```
    Test Result (1 failure / +1)
        org.apache.spark.sql.streaming.FlatMapGroupsWithStateSuite.flatMapGroupsWithState - streaming with processing time timeout - state format version 1
    ```
    
    failure seems unrelated to this pullreq


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94959 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94959/testReport)** for PR 22123 at commit [`f2eb1df`](https://github.com/apache/spark/commit/f2eb1df8256de6f38d72840a5cf70cd4bb7ec643).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94959 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94959/testReport)** for PR 22123 at commit [`f2eb1df`](https://github.com/apache/spark/commit/f2eb1df8256de6f38d72840a5cf70cd4bb7ec643).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94875 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94875/testReport)** for PR 22123 at commit [`09c986c`](https://github.com/apache/spark/commit/09c986c7e9586346255ba7631db83f2f88fe1625).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged to master.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #22123: [SPARK-25134][SQL] Csv column pruning with checki...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/22123


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    **[Test build #94854 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/94854/testReport)** for PR 22123 at commit [`c4179a9`](https://github.com/apache/spark/commit/c4179a9f0a85b412178323e6cb881385fa644051).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #22123: [SPARK-25134][SQL] Csv column pruning with checking of h...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/22123
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org