Skip to content

Commit

Permalink
Fix unused imports and change toString of new added fallback relation
Browse files Browse the repository at this point in the history
  • Loading branch information
urosstan-db committed Feb 29, 2024
1 parent 1906822 commit a45f019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
*/
package org.apache.spark.sql.execution.datasources.v2.jdbc

import org.apache.spark.rdd.RDD
import org.apache.spark.sql.{Row, SQLContext}
import org.apache.spark.sql.SQLContext
import org.apache.spark.sql.connector.expressions.filter.Predicate
import org.apache.spark.sql.connector.read.V1Scan
import org.apache.spark.sql.execution.datasources.jdbc.JDBCRelation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ case class JDBCV1CompatibleRelation(
pushedLimit, sortOrders, pushedOffset)
}

override def toString: String = "JDBC Relation"
override def toString: String = "JDBC V1 Compatible Relation"
}

0 comments on commit a45f019

Please sign in to comment.