Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19567#discussion_r147531601
  
    --- Diff: 
external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/PostgresIntegrationSuite.scala
 ---
    @@ -134,11 +149,28 @@ class PostgresIntegrationSuite extends 
DockerJDBCIntegrationSuite {
         assert(schema(1).dataType == ShortType)
       }
     
    -  test("SPARK-20557: column type TIMESTAMP with TIME ZONE and TIME with 
TIME ZONE should be recognized") {
    +  test("SPARK-20557: column type TIMESTAMP with TIME ZONE and TIME with 
TIME ZONE " +
    +    "should be recognized") {
         val dfRead = sqlContext.read.jdbc(jdbcUrl, "ts_with_timezone", new 
Properties)
         val rows = dfRead.collect()
         val types = rows(0).toSeq.map(x => x.getClass.toString)
         assert(types(1).equals("class java.sql.Timestamp"))
         assert(types(2).equals("class java.sql.Timestamp"))
       }
    +
    +  test("SPARK-22291: Postgresql UUID[] to Cassandra: Conversion Error") {
    --- End diff --
    
    This is not related to `Cassandra `. Please remove it from the test case 
name and the PR title. 


---

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

Reply via email to