Hi Stack,

> Any chance of your making an issue and attaching a patch with the
> below?  (It looks like the change you make below should happen in more
> than the place you cite)

HBASE-2210

> P.S. That port is almost gone.

Good! ;)

Take care,
i.

> On Sun, Feb 7, 2010 at 2:58 PM, Igor Ranitovic <[email protected]> wrote:
>> We got NPE in the thrift deleteAll when deleting all of cells of an
>> entire family of a single row (e.g deleteAll(table, key, familyname)).
>>
>> In org.apache.hadoop.hbase.thrift.ThriftServer's deleteAllTs
>> the line
>>     if (famAndQf[1].length == 0) {
>>  should be
>>    if (famAndQf[1] == null || famAndQf[1].length == 0) {
>>
>> Also, it would better if deleteAll takes a list of columns. My two cents :)
>>
>> Take care,
>> i.
>>
>

Reply via email to