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

    https://github.com/apache/spark/pull/19256#discussion_r139315660
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/jdbc/AggregatedDialect.scala ---
    @@ -41,4 +41,8 @@ private class AggregatedDialect(dialects: 
List[JdbcDialect]) extends JdbcDialect
       override def getJDBCType(dt: DataType): Option[JdbcType] = {
         dialects.flatMap(_.getJDBCType(dt)).headOption
       }
    +
    +  override def isCascadingTruncateTable(): Option[Boolean] = {
    +    dialects.flatMap(_.isCascadingTruncateTable).headOption
    --- End diff --
    
    This one is different from `getCatalystType ` and `getJDBCType `. Instead, 
we should follow 
[canHandle](https://github.com/huaxingao/spark/blob/7b9d6fcec61cd72ffb257abf17eb0e9d6c462f9e/sql/core/src/main/scala/org/apache/spark/sql/jdbc/AggregatedDialect.scala#L33-L34).


---

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

Reply via email to