We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f618148 commit 46c0e7fCopy full SHA for 46c0e7f
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JDBCRDD.scala
@@ -382,8 +382,6 @@ private[sql] class JDBCRDD(
382
val myWhereClause = getWhereClause(part)
383
384
val sqlText = s"SELECT $columnList FROM $fqTable $myWhereClause"
385
- logDebug(s"'${sqlText}' input into JDBC")
386
-
387
val stmt = conn.prepareStatement(sqlText,
388
ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY)
389
val fetchSize = properties.getProperty("fetchsize", "0").toInt
0 commit comments