This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch cassandra-3.11
in repository https://gitbox.apache.org/repos/asf/cassandra.git


The following commit(s) were added to refs/heads/cassandra-3.11 by this push:
     new eb2c549  ninja: fix build error on LegacyLayoutTest
eb2c549 is described below

commit eb2c549940baf0e30a8c07ea51fe4a1d828ca3ac
Author: Paulo Motta <pauloricard...@gmail.com>
AuthorDate: Fri Aug 23 09:06:45 2019 -0300

    ninja: fix build error on LegacyLayoutTest
---
 test/unit/org/apache/cassandra/db/LegacyLayoutTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/unit/org/apache/cassandra/db/LegacyLayoutTest.java 
b/test/unit/org/apache/cassandra/db/LegacyLayoutTest.java
index 4058b03..5a08e3e 100644
--- a/test/unit/org/apache/cassandra/db/LegacyLayoutTest.java
+++ b/test/unit/org/apache/cassandra/db/LegacyLayoutTest.java
@@ -374,8 +374,8 @@ public class LegacyLayoutTest
         ByteBuffer one = Int32Type.instance.decompose(1);
         ByteBuffer two = Int32Type.instance.decompose(2);
         PartitionUpdate p = new PartitionUpdate(table, table.decorateKey(one), 
table.partitionColumns(), 0);
-        p.add(new RangeTombstone(Slice.make(new 
Slice.Bound(ClusteringPrefix.Kind.EXCL_START_BOUND, new ByteBuffer[] { one, one 
}),
-                                            new 
Slice.Bound(ClusteringPrefix.Kind.INCL_END_BOUND, new ByteBuffer[] { two })),
+        p.add(new RangeTombstone(Slice.make(new 
ClusteringBound(ClusteringPrefix.Kind.EXCL_START_BOUND, new ByteBuffer[] { one, 
one }),
+                                            new 
ClusteringBound(ClusteringPrefix.Kind.INCL_END_BOUND, new ByteBuffer[] { two 
})),
                                  new DeletionTime(1, 1)
         ));
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to