For example: ``` model.User.List(self.connection, order=("LOWER(username)",)) ``` Will generate the following SQL: ```... ORDER BY `lower(username)`; ``` Thus generating an error because ``` `lower(..)` ``` is not a valid column.