Subject: | $handle->can('some_method') ignores added methods |
$dbh->can('some_method') ignores methods added by subclasses of DBI.
I discovered this while working with DBIx::RetryOverDisconnects; $dbh-
Show quoted text
>can('is_trans_disconnect') returns false, but a call to $dbh-
>is_trans_disconnect succeeds because DBIx::RetryOverDisconnects::db
indeed implements that method.