v.21.2New Features
Added Nullable Support for Multiple Dictionary Types
AddedNullablesupport forFlatDictionary,HashedDictionary,ComplexKeyHashedDictionary,DirectDictionary,ComplexKeyDirectDictionary,RangeHashedDictionary. #18236 (Maksim Kita).
Why it matters
This feature allows dictionaries to handle nullable values, solving the problem where previously dictionaries could not store or properly handleNullable data. It enhances the flexibility and expressiveness of dictionary lookups, enabling users to work with datasets that contain null or missing values more effectively.How to use it
To useNullable support in dictionaries, define the dictionary attributes or keys with Nullable types in your dictionary configuration files. Upon loading, dictionaries will correctly interpret and store nullable values, enabling accurate lookups. No additional steps are required beyond specifying Nullable types where needed.