diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/DummyStoreOperator.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/DummyStoreOperator.java index 2c630019ad..de5d9f47eb 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/DummyStoreOperator.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/DummyStoreOperator.java @@ -99,8 +99,7 @@ protected void initializeOp(Configuration hconf) throws HiveException { @Override public void process(Object row, int tag) throws HiveException { // Store the row. See comments above for why we need a new copy of the row. - result.o = ObjectInspectorUtils.copyToStandardObject(row, inputObjInspectors[0], - ObjectInspectorCopyOption.WRITABLE); + result.o = ObjectInspectorUtils.copyToStandardObject(row, inputObjInspectors[0]); } @Override