You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We now correctly consider the Frozen annotation when annotating a property to define a frozen<map<…>> type. Previously we conly considered frozen key and value components instead of the entire type.
Closes#1148
We now correctly consider the Frozen annotation when annotating a property to define a frozen<map<…>> type. Previously we only considered frozen key and value components instead of the entire type.
Closes#1148
The
@Frozen
annotation does not work to freeze a full Map, like so:It generate the following CQL:
Instead of:
It work on List and Set, or to froze the key and value of the Map, but not to froze the full Map.
I tested this on version 3.2.2.
The text was updated successfully, but these errors were encountered: