-
Type:
Bug
-
Status: Resolved
-
Priority:
Normal
-
Resolution: Fixed
-
Fix Version/s: 0.7.0 rc 1
-
Component/s: Legacy/Tools
-
Labels:None
-
Severity:Normal
The logic for adding column families in the methods addToStandardCF & addToSuperCF appears to be backwards
if (col.isDeleted)
{ cfamily.addColumn(path, hexToBytes(col.value), new TimestampClock(col.timestamp)); }else
{ cfamily.addTombstone(path, hexToBytes(col.value), new TimestampClock(col.timestamp)); }