ClickhouseBuilder icon indicating copy to clipboard operation
ClickhouseBuilder copied to clipboard

Uint64 in where casts to string

Open Camamber opened this issue 3 years ago • 0 comments

I'm using Uint64 in my where clause. In php I should use string for this type. In your wrap method is_string check goes before is_numeric. And all queries makes slower with string equality. For example: WHERE item_id = "1241214" much slower than WHERE item_id = 1241214

Camamber avatar Apr 19 '21 08:04 Camamber