Github user vrozov commented on a diff in the pull request: https://github.com/apache/drill/pull/1111#discussion_r169351388 --- Diff: contrib/storage-hive/core/src/main/java/org/apache/drill/exec/store/hive/readers/HiveAbstractReader.java --- @@ -143,7 +143,7 @@ private void init() throws ExecutionSetupException { HiveUtilities.getPartitionMetadata(partition, table); HiveUtilities.addConfToJob(job, partitionProperties); - final SerDe tableSerDe = createSerDe(job, table.getSd().getSerdeInfo().getSerializationLib(), tableProperties); + final Deserializer tableSerDe = createSerDe(job, table.getSd().getSerdeInfo().getSerializationLib(), tableProperties); --- End diff -- rename both function and the variable.
---