Skip to content

Commit

Permalink
support geo for reader (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 authored Oct 29, 2021
1 parent 02919c9 commit 2632f1d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ abstract class NebulaPartitionReader extends InputPartitionReader[InternalRow] {
if (value.isDouble) {
getters(i).apply(value.asDouble(), mutableRow, i)
}
if (value.isGeography) {
getters(i).apply(value.asGeography(), mutableRow, i)
}
}
mutableRow
}
Expand Down

0 comments on commit 2632f1d

Please sign in to comment.