Add TODO for record mode operation
This commit is contained in:
parent
3bc36a997e
commit
36dd95c263
@ -160,7 +160,8 @@ public class KeyValueColumnizeOperation extends AbstractOperation {
|
|||||||
|
|
||||||
String keyString = key.toString();
|
String keyString = key.toString();
|
||||||
// Start a new row on our beginning of record key
|
// Start a new row on our beginning of record key
|
||||||
if (keyString.equals(recordKey)) {
|
// TODO: Add support for processing in record mode instead of just by rows
|
||||||
|
if (keyString.equals(recordKey) || recordKey == null) {
|
||||||
reusableRow = new Row(newColumns.size());
|
reusableRow = new Row(newColumns.size());
|
||||||
newRows.add(reusableRow);
|
newRows.add(reusableRow);
|
||||||
currentRows.clear();
|
currentRows.clear();
|
||||||
|
Loading…
Reference in New Issue
Block a user