Merge branch 'cassandra-3.0' into cassandra-3.9

* cassandra-3.0:
  NullPointerExpception when reading/compacting table
This commit is contained in:
Sylvain Lebresne 2016-07-20 14:29:16 +02:00
commit 43d726be95
8 changed files with 54 additions and 15 deletions

View File

@ -1,6 +1,7 @@
3.9
* Fix SSL JMX requiring truststore containing server cert (CASSANDRA-12109)
Merged from 3.0:
* NullPointerExpception when reading/compacting table (CASSANDRA-11988)
* Fix problem with undeleteable rows on upgrade to new sstable format (CASSANDRA-12144)
Merged from 2.2:
* Fixed cqlshlib.test.remove_test_db (CASSANDRA-12214)

View File

@ -60,7 +60,7 @@ public abstract class AbstractBTreePartition implements Partition, Iterable<Row>
this.columns = columns;
this.tree = tree;
this.deletionInfo = deletionInfo;
this.staticRow = staticRow;
this.staticRow = staticRow == null ? Rows.EMPTY_STATIC_ROW : staticRow;
this.stats = stats;
}
}

View File

@ -55,7 +55,8 @@ public abstract class PurgeFunction extends Transformation<UnfilteredRowIterator
{
}
public UnfilteredRowIterator applyToPartition(UnfilteredRowIterator partition)
@Override
protected UnfilteredRowIterator applyToPartition(UnfilteredRowIterator partition)
{
onNewPartition(partition.partitionKey());
@ -71,24 +72,28 @@ public abstract class PurgeFunction extends Transformation<UnfilteredRowIterator
return purged;
}
public DeletionTime applyToDeletion(DeletionTime deletionTime)
@Override
protected DeletionTime applyToDeletion(DeletionTime deletionTime)
{
return purger.shouldPurge(deletionTime) ? DeletionTime.LIVE : deletionTime;
}
public Row applyToStatic(Row row)
@Override
protected Row applyToStatic(Row row)
{
updateProgress();
return row.purge(purger, nowInSec);
}
public Row applyToRow(Row row)
@Override
protected Row applyToRow(Row row)
{
updateProgress();
return row.purge(purger, nowInSec);
}
public RangeTombstoneMarker applyToMarker(RangeTombstoneMarker marker)
@Override
protected RangeTombstoneMarker applyToMarker(RangeTombstoneMarker marker)
{
updateProgress();
boolean reversed = isReverseOrder;

View File

@ -53,7 +53,7 @@ public interface BaseRowIterator<U extends Unfiltered> extends CloseableIterator
/**
* The static part corresponding to this partition (this can be an empty
* row).
* row but cannot be {@code null}).
*/
public Row staticRow();

View File

@ -200,7 +200,8 @@ public interface Row extends Unfiltered, Collection<ColumnData>
*
* @param purger the {@code DeletionPurger} to use to decide what can be purged.
* @param nowInSec the current time to decide what is deleted and what isn't (in the case of expired cells).
* @return this row but without any deletion info purged by {@code purger}.
* @return this row but without any deletion info purged by {@code purger}. If the purged row is empty, returns
* {@code null}.
*/
public Row purge(DeletionPurger purger, int nowInSec);
@ -220,8 +221,14 @@ public interface Row extends Unfiltered, Collection<ColumnData>
public Row markCounterLocalToBeCleared();
/**
* returns a copy of this row where all live timestamp have been replaced by {@code newTimestamp} and every deletion timestamp
* by {@code newTimestamp - 1}. See {@link Commit} for why we need this.
* Returns a copy of this row where all live timestamp have been replaced by {@code newTimestamp} and every deletion
* timestamp by {@code newTimestamp - 1}.
*
* @param newTimestamp the timestamp to use for all live data in the returned row.
* @param a copy of this row with timestamp updated using {@code newTimestamp}. This can return {@code null} in the
* rare where the row only as a shadowable row deletion and the new timestamp supersedes it.
*
* @see Commit for why we need this.
*/
public Row updateAllTimestamp(long newTimestamp);

View File

@ -72,7 +72,7 @@ implements BaseRowIterator<R>
public Row staticRow()
{
return staticRow;
return staticRow == null ? Rows.EMPTY_STATIC_ROW : staticRow;
}

View File

@ -33,7 +33,8 @@ final class Filter extends Transformation
this.nowInSec = nowInSec;
}
public RowIterator applyToPartition(BaseRowIterator iterator)
@Override
protected RowIterator applyToPartition(BaseRowIterator iterator)
{
RowIterator filtered = iterator instanceof UnfilteredRows
? new FilteredRows(this, (UnfilteredRows) iterator)
@ -45,7 +46,8 @@ final class Filter extends Transformation
return filtered;
}
public Row applyToStatic(Row row)
@Override
protected Row applyToStatic(Row row)
{
if (row.isEmpty())
return Rows.EMPTY_STATIC_ROW;
@ -54,12 +56,14 @@ final class Filter extends Transformation
return row == null ? Rows.EMPTY_STATIC_ROW : row;
}
public Row applyToRow(Row row)
@Override
protected Row applyToRow(Row row)
{
return row.purge(DeletionPurger.PURGE_ALL, nowInSec);
}
public RangeTombstoneMarker applyToMarker(RangeTombstoneMarker marker)
@Override
protected RangeTombstoneMarker applyToMarker(RangeTombstoneMarker marker)
{
return null;
}

View File

@ -278,4 +278,26 @@ public class StaticColumnsTest extends CQLTester
// We shouldn 't allow static when there is not clustering columns
assertInvalid("ALTER TABLE %s ADD bar2 text static");
}
/**
* Ensure that deleting and compacting a static row that should be purged doesn't throw.
* This is a test for #11988.
*/
@Test
public void testStaticColumnPurging() throws Throwable
{
createTable("CREATE TABLE %s (pkey text, ckey text, value text, static_value text static, PRIMARY KEY(pkey, ckey)) WITH gc_grace_seconds = 0");
execute("INSERT INTO %s (pkey, ckey, static_value, value) VALUES (?, ?, ?, ?)", "k1", "c1", "s1", "v1");
flush();
execute("DELETE static_value FROM %s WHERE pkey = ?", "k1");
flush();
compact();
assertRows(execute("SELECT * FROM %s"), row("k1", "c1", null, "v1"));
}
}