Merge -c 1527848 from trunk to branch-2 to fix MAPREDUCE-5551. Fix compat with hadoop-1 in SequenceFileAsBinaryOutputFormat.WritableValueBytes by re-introducing missing constructors. Contributed by Zhijie Shen.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1527850 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
80dd306450
commit
85f5626076
@ -112,6 +112,10 @@ Release 2.1.2 - UNRELEASED
|
||||
the job is really done - a bug caused by MAPREDUCE-5505. (Zhijie Shen via
|
||||
vinodkv)
|
||||
|
||||
MAPREDUCE-5551. Fix compat with hadoop-1 in
|
||||
SequenceFileAsBinaryOutputFormat.WritableValueBytes by re-introducing
|
||||
missing constructors. (Zhijie Shen via acmurthy)
|
||||
|
||||
Release 2.1.1-beta - 2013-09-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -47,6 +47,13 @@ public class SequenceFileAsBinaryOutputFormat
|
||||
*/
|
||||
static protected class WritableValueBytes extends org.apache.hadoop.mapreduce
|
||||
.lib.output.SequenceFileAsBinaryOutputFormat.WritableValueBytes {
|
||||
public WritableValueBytes() {
|
||||
super();
|
||||
}
|
||||
|
||||
public WritableValueBytes(BytesWritable value) {
|
||||
super(value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user