... but does not allow us to change it still (it is set twice),
this is something that the SIG wrapper will take care of once
viable.
- Fix incorrect 'having' attribute documentation (RT#64129)
- Improve fallback-to-master/return-to-slave reporting in
::Replicated::Balancer
+ - Adjust txn_scope_guard code/tests to changes in $@ handling on
+ recent blead (RT#64251)
* Misc
- Add extra option groups to DBIC::Optional::Depencencies, to aid
# we also need a real appendable, stackable exception object
# (coming soon)
BEGIN {
- if ($] < 5.013001) {
- *IS_BROKEN_PERL = sub () { 0 };
- }
- elsif ($] < 5.013008) {
+ if ($] >= 5.013001 and $] <= 5.013007) {
*IS_BROKEN_PERL = sub () { 1 };
}
else {
- die 'The $@ debacle should have been resolved by now, adjust DBIC';
+ *IS_BROKEN_PERL = sub () { 0 };
}
}
#$schema->storage->_dbh( $schema->storage->_dbh->clone );
die 'Deliberate exception';
- }, qr/Deliberate exception.+Rollback failed/s);
+ }, ($] >= 5.013008 )
+ ? qr/Deliberate exception/s # temporary until we get the generic exception wrapper rolling
+ : qr/Deliberate exception.+Rollback failed/s
+ );
# just to mask off warning since we could not disconnect above
$schema->storage->_dbh->disconnect;