Hello everyone!
Recently I noticed that Query.equal() ignores the casing of the what is passed to it. For example:
username = "Test"
is returned when any these are used:
Query.equal("username", "test"), Query.equal("username", "Test"), Query.equal("username", "tESt")
I expected Query.equal() to be case sensitive. Does anyone know if Query.equal() is case insensitive by design, or is there is some kind of bug going on?