- Fix regression on not properly throwing when $obj->relationship
is unresolvable
- Add has_relationship method to row objects
- - Fix for SQLite to ignore the { for => ... } attribute
+ - Fix for SQLite to ignore the { for => ... } attribute
0.08120 2010-02-24 08:58:00 (UTC)
- Make sure possibly overwritten deployment_statements methods in
my $schema = DBICTest->init_schema;
is_same_sql_bind(
- $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query,
- "(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)", []);
+ $schema->resultset('Artist')->search ({}, {for => 'update'})->as_query,
+ '(SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me)', [],
+);
done_testing;