In ClickHouse Playground dataset conditions on UInt64 fields don't seem to work. For example query:
SELECT * FROM hits_100m_obfuscated where WatchID = 8120543446287443000
doesn't return anything (even though I copied the ID from the dataset). Same is true if the condition is on UserID. But the following works just fine:
SELECT * FROM hits_100m_obfuscated where ClientIP = 3078276782
I guess the reason is that ClientIP field has type UInt32, but both UserID and WatchID - UInt64. I tried to use toUInt64 and CAST, but didn't succeed.
Any idea what am I doing wrong?