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

    https://github.com/apache/spark/pull/22560#discussion_r220733406
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JDBCOptions.scala
 ---
    @@ -186,6 +187,11 @@ class JDBCOptions(
     
       // An option to allow/disallow pushing down predicate into JDBC data 
source
       val pushDownPredicate = parameters.getOrElse(JDBC_PUSHDOWN_PREDICATE, 
"true").toBoolean
    +
    +  val connectionFactoryProvider: ConnectionFactoryProvider =
    +    parameters.get(JDBC_CONNECTION_FACTORY_PROVIDER).map { className =>
    +      
Utils.classForName(className).newInstance.asInstanceOf[ConnectionFactoryProvider]
    --- End diff --
    
    Would you not want to see this exception and know you've done something 
wrong instead of silently falling back to the default?


---

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

Reply via email to