Sometimes you want to compare text outside of an aggregate in a case insensitive manner. To do this you need to enclose both sides of the = in ToUpper or ToLower functions. It would be nice to have an operator to shortcut this.
Something like: var1 ~= var2
Instead of: ToUpper(var1) = ToUpper(var2)