Skip to content

Commit ab2eeb8

Browse files
committed
WebRowsetBuilder compile fix.
1 parent abee844 commit ab2eeb8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

web/client-api/src/main/resources/io/deephaven/web/super/io/deephaven/engine/rowset/WebRowSetBuilderSequentialImpl.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ public void appendRange(long rangeFirstRowKey, long rangeLastRowKey) {
1010
rangeSet.addRange(new Range(rangeFirstRowKey, rangeLastRowKey));
1111
}
1212

13+
@Override
14+
public void appendKey(long key) {
15+
rangeSet.addRange(new Range(key, key));
16+
}
17+
1318
@Override
1419
public void accept(long first, long last) {
1520
appendRange(first, last);

0 commit comments

Comments
 (0)