I need to perform an insert to Cassandra table without creating tombstones for any column. I am using a query similar to this :
insert into my_table(col1,col2,col3) values(val1,val2,null)
where col1, col2 and col3 are all the attributes in my_table.
Is there any other solution or workaround to prevent tombstone creation for say col3
apart from passing only non-null attributes in our query and letting cassandra set the remaining attributes to null?