harry-core/src/harry/corruptor/ChangeValueCorruptor.java [52:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean canCorrupt(ResultSetRow row)
    {
        for (int idx = 0; idx < row.lts.length; idx++)
        {
            // TODO: in addition to this, we should check if the value equals to the largest possible
            // value, since otherwise it won't sort correctly.
            if (row.lts[idx] != Model.NO_TIMESTAMP)
                return true;
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



harry-core/src/harry/corruptor/HideValueCorruptor.java [47:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean canCorrupt(ResultSetRow row)
    {
        for (int idx = 0; idx < row.lts.length; idx++)
        {
            if (row.lts[idx] != Model.NO_TIMESTAMP)
                return true;
        }
        return false;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



