HADOOP-8323. Revert HADOOP-7940, cause it may cause a performance regression. (harsh)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1334603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
51e520c68a
commit
e7d03636a0
|
@ -326,8 +326,6 @@ Release 2.0.0 - UNRELEASED
|
||||||
|
|
||||||
HADOOP-8104. Inconsistent Jackson versions (tucu)
|
HADOOP-8104. Inconsistent Jackson versions (tucu)
|
||||||
|
|
||||||
HADOOP-7940. The Text.clear() method does not clear the bytes as intended. (Csaba Miklos via harsh)
|
|
||||||
|
|
||||||
HADOOP-8119. Fix javac warnings in TestAuthenticationFilter in hadoop-auth.
|
HADOOP-8119. Fix javac warnings in TestAuthenticationFilter in hadoop-auth.
|
||||||
(szetszwo)
|
(szetszwo)
|
||||||
|
|
||||||
|
|
|
@ -239,7 +239,6 @@ public class Text extends BinaryComparable
|
||||||
*/
|
*/
|
||||||
public void clear() {
|
public void clear() {
|
||||||
length = 0;
|
length = 0;
|
||||||
bytes = EMPTY_BYTES;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -192,16 +192,6 @@ public class TestText extends TestCase {
|
||||||
assertTrue(text.find("\u20ac", 5)==11);
|
assertTrue(text.find("\u20ac", 5)==11);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testClear() {
|
|
||||||
Text text = new Text();
|
|
||||||
assertEquals("", text.toString());
|
|
||||||
assertEquals(0, text.getBytes().length);
|
|
||||||
text = new Text("abcd\u20acbdcd\u20ac");
|
|
||||||
text.clear();
|
|
||||||
assertEquals("", text.toString());
|
|
||||||
assertEquals(0, text.getBytes().length);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testFindAfterUpdatingContents() throws Exception {
|
public void testFindAfterUpdatingContents() throws Exception {
|
||||||
Text text = new Text("abcd");
|
Text text = new Text("abcd");
|
||||||
text.set("a".getBytes());
|
text.set("a".getBytes());
|
||||||
|
|
Loading…
Reference in New Issue