Hi i have a problem. I have a table that contains the columns: id(PK), name(text), mix(integer[])
i use postgresql and i try to execute condition:
SELECT * FROM table t WHERE 1 <> ALL(mix)
Table::find(['conditions' => '1 <> ALL(mix)']);
PHP Fatal error: Uncaught Phalcon\Mvc\Model\Exception: Syntax error, unexpected EOF in
How to handle array types in the Phalcon? documentation says nothing about. (Phalcon\Mvc\Model\Resultset\Simpl is a last resort)