v.18.16New Feature
Added Automatic Type Determination for dictGet and dictGetOrDefault Functions
AddeddictGetanddictGetOrDefaultfunctions that do not require specifying the type of return value. The type is determined automatically from the dictionary description. Amos Bird
Why it matters
These functions simplify queries by removing the requirement to manually specify the return type of dictionary lookups, reducing errors and making the syntax cleaner and easier to use.How to use it
UsedictGet and dictGetOrDefault just like the existing dictionary functions but without specifying the return type. The functions will infer the return type based on the dictionary's schema automatically.