Skip to content

Commit

Permalink
Add missing generics in S3SelectRecordCursor
Browse files Browse the repository at this point in the history
Cherry-pick of trinodb/trino#197

Co-authored-by: David Phillips <david@acz.org>
  • Loading branch information
2 people authored and tdcmeehan committed Mar 16, 2022
1 parent dfe8fc6 commit 4a46c79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import static org.apache.hadoop.hive.serde.serdeConstants.SERIALIZATION_DDL;

class S3SelectRecordCursor<K, V extends Writable>
extends GenericHiveRecordCursor
extends GenericHiveRecordCursor<K, V>
{
private static final String THRIFT_STRUCT = "struct";
private static final String START_STRUCT = "{";
Expand All @@ -46,7 +46,7 @@ class S3SelectRecordCursor<K, V extends Writable>
public S3SelectRecordCursor(
Configuration configuration,
Path path,
RecordReader recordReader,
RecordReader<K, V> recordReader,
long totalBytes,
Properties splitSchema,
List<HiveColumnHandle> columns,
Expand Down

0 comments on commit 4a46c79

Please sign in to comment.