YARN-6253. FlowAcitivityColumnPrefix.store(byte[] rowKey, ...) drops timestamp. Contributed by Haibo Chen.

This commit is contained in:
Sangjin Lee 2017-02-28 16:10:25 -08:00 committed by Varun Saxena
parent ff43b8db7a
commit cf30b3b914
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ public void store(byte[] rowKey,
byte[] columnQualifier = getColumnPrefixBytes(qualifier);
Attribute[] combinedAttributes =
HBaseTimelineStorageUtils.combineAttributes(attributes, this.aggOp);
column.store(rowKey, tableMutator, columnQualifier, null, inputValue,
column.store(rowKey, tableMutator, columnQualifier, timestamp, inputValue,
combinedAttributes);
}
}