Open Zk2u opened 5 months ago
I'll include this functionality in the ongoing deserialization refactor, planned for release 0.14.
@617a7aa Please take a look at #1007. Please confirm that the behaviour showcased by the added test is in line with your expectations.
ACK, looks good to me.
While ScyllaDB doesn’t distinguish between null and and empty set, it’s not very ergonomic to represent these collections as
Option<CollectionType<T>>
. For example, an empty set in Scylla should be deserialised into an emptyHashSet<T>
, not aNone::<CollectionType<T>>
.This would be a breaking API change.