[Allow non-string values in `select-using-object' clinton@unknownlamer.org**20101117232439 Ignore-this: d9ae39ecc5bfd56be45a772c55dedc7a * Maintain current ILIKE behavior for string values * Use `=' for all other values * Still hacky and evil, but it gets the job done well enough ] hunk ./src/db-access-object-sql.lisp 249 - (push `(:ilike ,(slot-definition-column-name slotd) ,(if (stringp val) - (format nil "~A%" val) val)) select-query))) + (if (stringp val) + (push `(:ilike ,(slot-definition-column-name slotd) ,(format nil "~A%" val)) select-query) + (push `(:= ,(slot-definition-column-name slotd) ,val) select-query))))