Hey, I'm trying to find duplicate files by using following code, but I keep getting expection "Unknown expression type 94"
File::find([
"BIT_COUNT (phash ^ ?0) < 4",
"bind" => $file->phash
]);
Which leads to following trace { "function": "_getExpression", "class": "Phalcon\Mvc\Model\Query", "type": "->", "args": [ { "type": 94, "left": { "type": 355, "name": "phash" }, "right": { "type": 273, "value": "?0" } } ] },
If I can't use BIT_COUNT with phalcon ORM, is there some other way to accomplish same result, while keeping reslt as model format?