Add TODO for record mode operation

This commit is contained in:
Tom Morris 2013-05-26 07:54:33 -04:00
parent 3bc36a997e
commit 36dd95c263

View File

@ -160,7 +160,8 @@ public class KeyValueColumnizeOperation extends AbstractOperation {
String keyString = key.toString();
// 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());
newRows.add(reusableRow);
currentRows.clear();