You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Cheng Hao (JIRA)" <ji...@apache.org> on 2014/12/25 09:29:13 UTC

[jira] [Created] (SPARK-4967) File name with comma will cause exception for SQLContext.parquetFile

Cheng Hao created SPARK-4967:
--------------------------------

             Summary: File name with comma will cause exception for SQLContext.parquetFile
                 Key: SPARK-4967
                 URL: https://issues.apache.org/jira/browse/SPARK-4967
             Project: Spark
          Issue Type: Bug
          Components: SQL
            Reporter: Cheng Hao
            Priority: Minor


{code}
  test("simple projection with comma in file name") {
    val tmpFile = util.getTempFilePath("t,t").getCanonicalFile
    Utils.registerShutdownDeleteDir(tmpFile)
    // Test if "," in the file name can be correctly handled
    sparkContext.parallelize((1, 1) :: Nil).saveAsParquetFile(tmpFile.getCanonicalPath)
    assert(parquetFile(tmpFile.getCanonicalPath).first() === Row(1, 1))
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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