Subject: | where conditions do not accept SQL functions like REPLACE |
the following where condition results in an error:
where=>[REPLACE($table->name,' ',''),'=','blafoo']
The error can be fixed in SQLMaker::condition
542 validate_pos ( @_,
543 { type => OBJECT },
544 ....
by changing line 543 to { type=> OBJECT | SCALAR },