From 36dd95c2630a3e5effb3c2f1e7f78d1d03f63539 Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Sun, 26 May 2013 07:54:33 -0400 Subject: [PATCH] Add TODO for record mode operation --- .../refine/operations/cell/KeyValueColumnizeOperation.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/src/com/google/refine/operations/cell/KeyValueColumnizeOperation.java b/main/src/com/google/refine/operations/cell/KeyValueColumnizeOperation.java index 95754ec1f..f1cac9a63 100644 --- a/main/src/com/google/refine/operations/cell/KeyValueColumnizeOperation.java +++ b/main/src/com/google/refine/operations/cell/KeyValueColumnizeOperation.java @@ -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();