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

    https://github.com/apache/spark/pull/21173#discussion_r184808498
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JDBCOptions.scala
 ---
    @@ -89,6 +89,10 @@ class JDBCOptions(
       // the number of partitions
       val numPartitions = parameters.get(JDBC_NUM_PARTITIONS).map(_.toInt)
     
    +  // the number of seconds the driver will wait for a Statement object to 
execute to the given
    +  // number of seconds. Zero means there is no limit.
    +  val queryTimeout = parameters.getOrElse(JDBC_QUERY_TIMEOUT, "0").toInt
    --- End diff --
    
    It would be useful to describe the jdbc parameter in comments of public 
methods `DataFrameReader.jdbc(...)`


---

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

Reply via email to