HBASE-11310 Addendum fixes compilation error

This commit is contained in:
Ted Yu 2014-06-11 18:50:27 +00:00
parent 9944c6031f
commit aa916b81ce
1 changed files with 1 additions and 1 deletions

View File

@ -4504,7 +4504,7 @@ public class TestFromClientSide {
}
// try null row
try {
Increment incNoRow = new Increment(null);
Increment incNoRow = new Increment((byte [])null);
incNoRow.addColumn(FAMILY, COLUMN, 5);
fail("Should have thrown IllegalArgumentException");
} catch (IllegalArgumentException iax) {