Description
Many types of order by clauses no longer work
in 3.2-rc1, they worked fine in 3.1.1 . For example:
ORDER BY table.column < 100
ORDER BY table.column IN (1, 2, 3)
ORDER BY 100 > table.column
The cause of this is the new
SQLBuilder.removeSQLFunction()
which only removes takes table.column name from inside parens.
Migrated Scarab issue raised by Jacob Champlin (jchamplin at emocorp dot com)