- Ability to add custom SQL objects as values to Join's conditions. This allows you to take advantage of escaping columns and still using custom SQL
// JOIN table ON column1 IS NULL
$select->join('table', array('column1' => new SQL('IS NULL'));- Fix Set Multiple column escaping bug