mirror of https://github.com/apache/druid.git
Merge pull request #914 from metamx/fix-cardinality-caching
fix cardinality aggregator caching
This commit is contained in:
commit
34fb2f10b6
|
@ -214,9 +214,10 @@ public class CardinalityAggregatorFactory implements AggregatorFactory
|
|||
{
|
||||
byte[] fieldNameBytes = Joiner.on("\u0001").join(fieldNames).getBytes(Charsets.UTF_8);
|
||||
|
||||
return ByteBuffer.allocate(1 + fieldNameBytes.length)
|
||||
return ByteBuffer.allocate(2 + fieldNameBytes.length)
|
||||
.put(CACHE_TYPE_ID)
|
||||
.put(fieldNameBytes)
|
||||
.put((byte)(byRow ? 1 : 0))
|
||||
.array();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue