We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2e3204 commit 6e13a23Copy full SHA for 6e13a23
hbase-driver/src/main/java/org/jnosql/diana/hbase/column/HBaseColumnFamilyManager.java
@@ -133,6 +133,11 @@ public List<ColumnEntity> select(ColumnQuery query) {
133
return Stream.of(findById(condition)).map(EntityUnit::new).filter(EntityUnit::isNotEmpty).map(EntityUnit::toEntity).collect(toList());
134
}
135
136
+ @Override
137
+ public long count(String columnFamily) {
138
+ throw new UnsupportedOperationException("Hbase does not have support to count method");
139
+ }
140
+
141
142
@Override
143
public void close() {
0 commit comments