Skip to content

Commit eecc9df

Browse files
committed
remove jdbc in private function
1 parent 3ba3f64 commit eecc9df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/connect/client/jdbc/src/main/scala/org/apache/spark/sql/connect/client/jdbc/SparkConnectResultSet.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class SparkConnectResultSet(
7676
}
7777
}
7878

79-
private[jdbc] def getColumnValue[T](columnIndex: Int, defaultVal: T)(getter: Int => T): T = {
79+
private def getColumnValue[T](columnIndex: Int, defaultVal: T)(getter: Int => T): T = {
8080
checkOpen()
8181
// the passed index value is 1-indexed, but the underlying array is 0-indexed
8282
val index = columnIndex - 1

0 commit comments

Comments
 (0)