MAPREDUCE-5518. Fixed typo "can't read paritions file". Contributed by Albert Chu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1532208 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
258c181ade
commit
4407d5f65f
|
@ -216,6 +216,9 @@ Release 2.2.1 - UNRELEASED
|
||||||
MAPREDUCE-5546. mapred.cmd on Windows set HADOOP_OPTS incorrectly (Chuan Liu
|
MAPREDUCE-5546. mapred.cmd on Windows set HADOOP_OPTS incorrectly (Chuan Liu
|
||||||
via cnauroth)
|
via cnauroth)
|
||||||
|
|
||||||
|
MAPREDUCE-5518. Fixed typo "can't read paritions file". (Albert Chu
|
||||||
|
via devaraj)
|
||||||
|
|
||||||
Release 2.2.0 - 2013-10-13
|
Release 2.2.0 - 2013-10-13
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -213,7 +213,7 @@ public class TeraSort extends Configured implements Tool {
|
||||||
splitPoints = readPartitions(fs, partFile, conf);
|
splitPoints = readPartitions(fs, partFile, conf);
|
||||||
trie = buildTrie(splitPoints, 0, splitPoints.length, new Text(), 2);
|
trie = buildTrie(splitPoints, 0, splitPoints.length, new Text(), 2);
|
||||||
} catch (IOException ie) {
|
} catch (IOException ie) {
|
||||||
throw new IllegalArgumentException("can't read paritions file", ie);
|
throw new IllegalArgumentException("can't read partitions file", ie);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue