jberragan commented on code in PR #62:
URL: 
https://github.com/apache/cassandra-analytics/pull/62#discussion_r1668933421


##########
cassandra-four-zero-bridge/src/main/java/org/apache/cassandra/spark/reader/MapBuffer.java:
##########
@@ -17,28 +17,21 @@
  * under the License.
  */
 
-package org.apache.cassandra.bridge;
+package org.apache.cassandra.spark.reader;
 
-public class RangeTombstone
-{
-    public final Bound open;
-    public final Bound close;
+import org.apache.cassandra.db.rows.Cell;
 
-    public RangeTombstone(Bound open, Bound close)
+public class MapBuffer extends ComplexTypeBuffer
+{
+    MapBuffer(int cellCount)
     {
-        this.open = open;
-        this.close = close;
+        super(cellCount, cellCount * 2);

Review Comment:
   Yes, it's because it requires 2 buffers, for the key & value. I'll add a 
comment.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to