- Revert inlining of String::CamelCase::wordsplit() (RT#125929)
- Do not require MooseX::MarkAsMethods with only_autoclean=1 (GH#21)
+ - Exclude tables in the Oracle Recycle Bin (RT#128149)
0.07049 - 2018-03-21
- Fix tests when the path to perl has spaces in it (GH#19)
sub _system_tables {
my $self = shift;
- return ($self->next::method(@_), 'PLAN_TABLE');
+ return (
+ $self->next::method(@_),
+ 'PLAN_TABLE',
+ qr/\ABIN\$.*\$\d+\z/, # Tables in the recycle bin
+ );
}
sub _dbh_tables {