HT_Entries doesn't seem to work. I'm adding to the hashtable using HT_Set and HT_Count gives back the correct number of entries, but HT_Entries returns empty. My values are decimals so they should cast to text just fine as per the description "Only values that can be cast to Text are returned."
I made a quick test and added text, an int, a decimal, a bool, and a date to the hashtable. All 5 of those are castable as text, but HT_Count gives me 5 and HT_Entries has 1.
Failed assert for "Count". Expected "5" but obtained "1"
Hi @Greg Whitten, sorry it took so long for me to notice this post.
Can you share a sample OML so that I can also reproduce the issue?
The latest version of Advanced Hashtable instantiates a Dictionary<string, object> instead of using the old Hashtable class we were using in older versions. This might've affected the outcome of the test you described.
Thanks.