Github user vdiravka commented on a diff in the pull request:
https://github.com/apache/drill/pull/1111#discussion_r169397544
--- 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 --
Done. `tableSerDe` -> `tableDeserializer` and `createSerDe` ->
`createDeserializer`
If you meant `getSerdeInfo()` as well, that function is a part of hive code.
---