You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MySQL supports syntax like a = BINARY b that SQLite don't. I think it's the same as a = CAST(b as BINARY) – so a byte-by-byte comparison, or, effectively, a case-sensitive comparison – but that needs to be confirmed. Let's support it.
The text was updated successfully, but these errors were encountered:
MySQL supports syntax like
a = BINARY b
that SQLite don't. I think it's the same asa = CAST(b as BINARY)
– so a byte-by-byte comparison, or, effectively, a case-sensitive comparison – but that needs to be confirmed. Let's support it.The text was updated successfully, but these errors were encountered: