skoppu22 commented on code in PR #183:
URL:
https://github.com/apache/cassandra-analytics/pull/183#discussion_r2959509503
##########
cassandra-four-zero-types/src/main/java/org/apache/cassandra/spark/data/complex/CqlSet.java:
##########
@@ -104,15 +104,15 @@ public void addCell(final
org.apache.cassandra.db.rows.Row.Builder rowBuilder,
ColumnMetadata cd,
long timestamp,
int ttl,
- int now,
+ long now,
Object value)
{
for (Object o : (Set<?>) value)
{
if (ttl != NO_TTL)
{
- rowBuilder.addCell(BufferCell.expiring(cd, timestamp, ttl,
now, ByteBufferUtil.EMPTY_BYTE_BUFFER,
-
CellPath.create(type().serialize(o))));
+ rowBuilder.addCell(CqlType.expiring(cd, timestamp, ttl, now,
ByteBufferUtil.EMPTY_BYTE_BUFFER,
+
CellPath.create(type().serialize(o))));
Review Comment:
Same as explained above for CqlMap
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]