Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Review fixes
  • Loading branch information
gaborgsomogyi committed Jun 23, 2020
commit e16b4a4b355951ad604069dd78ec2c1bb8ee04d2
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ import org.apache.spark.tags.DockerTest
*
* It has been validated with 18.4.0 Express Edition.
*/

@DockerTest
class OracleIntegrationSuite extends DockerJDBCIntegrationSuite with SharedSparkSession {
import testImplicits._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ private[sql] class OracleConnectionProvider(driver: Driver, options: JDBCOptions

override def getAdditionalProperties(): Properties = {
val result = new Properties()
// This prop needed to turn on kerberos authentication in the JDBC driver
// This prop needed to turn on kerberos authentication in the JDBC driver. Please see:
// scalastyle:off line.size.limit
// https://docs.oracle.com/en/database/oracle/oracle-database/19/jajdb/oracle/jdbc/OracleConnection.html#CONNECTION_PROPERTY_THIN_NET_AUTHENTICATION_SERVICES
// scalastyle:on line.size.limit
result.put("oracle.net.authentication_services", "(KERBEROS5)");
result
}
Expand Down