Issue #8 came out a few months ago.
I am trying to work out if this is LTR Arabic, or just gibberish.
From the boardgame Blood on the Clocktower.
Update: The original dev does not remember exactly. However they have said that clientId was originally a VARCHAR, so this may have been checking for both '0' or ''
clientId
'0'
''
So an over-engineered workaround to a bad datatype perhaps?
I am one of the developers on a very small team and have just found the following query
I would love to hear your ideas for what you think was being attempted here!
SELECT ... FROM client WHERE CAST(ABS(SIN(clientId)) AS BIT) = 0
I hope some people here enjoy reading these as much as I have
If you know of anything similar, I would love to hear them
Update: The original dev does not remember exactly. However they have said that
clientIdwas originally a VARCHAR, so this may have been checking for both'0'or''So an over-engineered workaround to a bad datatype perhaps?