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 8a7d960 commit 6bf6e3dCopy full SHA for 6bf6e3d
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JdbcUtils.scala
@@ -439,10 +439,6 @@ object JdbcUtils extends Logging {
439
(rs: ResultSet, row: InternalRow, pos: Int) =>
440
row.setLong(pos, rs.getLong(pos + 1))
441
442
- case ByteType =>
443
- (rs: ResultSet, row: InternalRow, pos: Int) =>
444
- row.setByte(pos, rs.getByte(pos + 1))
445
-
446
case ShortType =>
447
448
row.setShort(pos, rs.getShort(pos + 1))
0 commit comments