From a4b8d1e9bc67eb0eff159b5b35902cab19e3fc11 Mon Sep 17 00:00:00 2001 From: Sylvain Lebresne Date: Thu, 5 Jul 2018 09:24:17 +0200 Subject: [PATCH] Fix build --- test/unit/org/apache/cassandra/db/CounterCellTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/unit/org/apache/cassandra/db/CounterCellTest.java b/test/unit/org/apache/cassandra/db/CounterCellTest.java index 8859fc671f..b4c7b2a1ae 100644 --- a/test/unit/org/apache/cassandra/db/CounterCellTest.java +++ b/test/unit/org/apache/cassandra/db/CounterCellTest.java @@ -32,7 +32,6 @@ import org.apache.cassandra.config.ColumnDefinition; import org.apache.cassandra.db.rows.BTreeRow; import org.apache.cassandra.db.rows.BufferCell; import org.apache.cassandra.db.rows.Cell; -import org.apache.cassandra.db.rows.CellPath; import org.apache.cassandra.db.rows.Cells; import org.apache.cassandra.db.context.CounterContext; import org.apache.cassandra.db.rows.Row; @@ -292,10 +291,10 @@ public class CounterCellTest ColumnFamilyStore cfs = Keyspace.open(KEYSPACE1).getColumnFamilyStore(COUNTER1); ColumnDefinition emptyColDef = cfs.metadata.getColumnDefinition(ByteBufferUtil.bytes("val2")); - BufferCell emptyCell = BufferCell.live(emptyColDef, 0, ByteBuffer.allocate(0)); + BufferCell emptyCell = BufferCell.live(cfs.metadata, emptyColDef, 0, ByteBuffer.allocate(0)); Row.Builder builder = BTreeRow.unsortedBuilder(0); - builder.newRow(Clustering.make(AsciiSerializer.instance.serialize("test"))); + builder.newRow(new Clustering(AsciiSerializer.instance.serialize("test"))); builder.addCell(emptyCell); Row row = builder.build();