Subject: | After update to 1.63 break my code (postgres) |
my ($admin) = $schema->resultset('Userlog')->search(
{
ip => {'<<=' => '127.0.0.1/32' },
},
{
select => ['id','ip'],
order_by => { -asc => ['id'] },
rows => 1,
},
);
SET search_path TO contrib, public:
SELECT id, ip FROM userlog me WHERE ( ip = <<=( ? ) ) ) ORDER BY id ASC
LIMIT 1: '127.0.0.1/32'
DBIx::Class::ResultSet::search(): DBI Exception: DBD::Pg::st execute
failed: ERROR: operator does not exist: <<= unknown