$result = $db->query("SELECT *, UNIX_TIMESTAMP(:select_field) AS EPOCH FROM MyTable WHERE UNIX_TIMESTAMP(last_update) > :timestamp ORDER BY :sortby DESC", ['select_field' => 'last_update', 'timestamp' => 0, 'sortby' => 'PrimaryID']);
$result->setFetchMode(\Phalcon\Db::FETCH_ASSOC);
$rows = $result->fetchAll();
Is this correct behaviour of Phalcon? I'm trying some RAW SQL queries. Both named and numeric placeholders (?) are not respected.