Skip to content

Commit 6bf6e3d

Browse files
committed
Fixing issues in orignal commit. Change was not in the right place. Should have seen this as a build failure earlier.
1 parent 8a7d960 commit 6bf6e3d

File tree

1 file changed

+0
-4
lines changed
  • sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc

1 file changed

+0
-4
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/jdbc/JdbcUtils.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,6 @@ object JdbcUtils extends Logging {
439439
(rs: ResultSet, row: InternalRow, pos: Int) =>
440440
row.setLong(pos, rs.getLong(pos + 1))
441441

442-
case ByteType =>
443-
(rs: ResultSet, row: InternalRow, pos: Int) =>
444-
row.setByte(pos, rs.getByte(pos + 1))
445-
446442
case ShortType =>
447443
(rs: ResultSet, row: InternalRow, pos: Int) =>
448444
row.setShort(pos, rs.getShort(pos + 1))

0 commit comments

Comments
 (0)