Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/975#discussion_r143264890
--- Diff:
contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseRecordReader.java
---
@@ -97,6 +97,7 @@ public HBaseRecordReader(Connection connection,
HBaseSubScan.HBaseSubScanSpec su
@Override
protected Collection<SchemaPath> transformColumns(Collection<SchemaPath>
columns) {
Set<SchemaPath> transformed = Sets.newLinkedHashSet();
+ Set<String> completeFamilies = Sets.newHashSet();
--- End diff --
Do we need to worry about case sensitivity here?
---