is with_deferred_fk_checks
- Fix incorrect dependency on Test::Simple/Builder (RT#72282)
- Fix uninitialized warning in ::Storage::Sybase::ASE
+ - Improve/cache DBD-specific datatype bind checks (also solves a
+ nasty memleak with version.pm on multiple ->VERSION invocations)
* Misc
- No longer depend on Variable::Magic now that a pure-perl
$_->{dbd_attrs}
}
elsif($_->{sqlt_datatype}) {
- $self->bind_attribute_by_data_type($_->{sqlt_datatype}) || undef;
+ # cache the result in the dbh_details hash, as it can not change unless
+ # we connect to something else
+ my $cache = $self->_dbh_details->{_datatype_map_cache} ||= {};
+ if (not exists $cache->{$_->{sqlt_datatype}}) {
+ $cache->{$_->{sqlt_datatype}} = $self->bind_attribute_by_data_type($_->{sqlt_datatype}) || undef;
+ }
+ $cache->{$_->{sqlt_datatype}};
}
elsif ($sba_attrs and $_->{dbic_colname}) {
$sba_attrs->{$_->{dbic_colname}} || undef;
use mro 'c3';
use Sub::Name;
+use Try::Tiny;
use namespace::clean;
=head1 NAME
}
# Monkeypatch out the horrible warnings during global destruction.
-# A patch to DBD::ADO has been submitted as well.
+# A patch to DBD::ADO has been submitted as well, and it was fixed
+# as of 2.99
# https://rt.cpan.org/Ticket/Display.html?id=65563
sub _init {
- no warnings 'redefine';
- require DBD::ADO;
-
- if (DBD::ADO->VERSION <= 2.98) {
- my $disconnect = *DBD::ADO::db::disconnect{CODE};
-
- *DBD::ADO::db::disconnect = subname 'DBD::ADO::db::disconnect' => sub {
- my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
- local $SIG{__WARN__} = sub {
- $warn_handler->(@_)
- unless $_[0] =~ /Not a Win32::OLE object|uninitialized value/;
+ unless ($DBD::ADO::__DBIC_MONKEYPATCH_CHECKED__) {
+ require DBD::ADO;
+
+ unless (try { DBD::ADO->VERSION('2.99'); 1 }) {
+ no warnings 'redefine';
+ my $disconnect = *DBD::ADO::db::disconnect{CODE};
+
+ *DBD::ADO::db::disconnect = subname 'DBD::ADO::db::disconnect' => sub {
+ my $warn_handler = $SIG{__WARN__} || sub { warn @_ };
+ local $SIG{__WARN__} = sub {
+ $warn_handler->(@_)
+ unless $_[0] =~ /Not a Win32::OLE object|uninitialized value/;
+ };
+ $disconnect->(@_);
};
- $disconnect->(@_);
- };
+ }
+
+ $DBD::ADO::__DBIC_MONKEYPATCH_CHECKED__ = 1;
}
}
$attrs;
}
-my $dbd_loaded;
sub bind_attribute_by_data_type {
my ($self, $dt) = @_;
- $dbd_loaded ||= do {
- require DBD::Oracle;
- if ($DBD::Oracle::VERSION eq '1.23') {
- $self->throw_exception(
- "BLOB/CLOB support in DBD::Oracle == 1.23 is broken, use an earlier or later ".
- "version.\n\nSee: https://rt.cpan.org/Public/Bug/Display.html?id=46016\n"
- );
+ if ($self->_is_lob_type($dt)) {
+
+ # this is a hot-ish codepath, store an escape-flag in the DBD namespace, so that
+ # things like Class::Unload work (unlikely but possible)
+ unless ($DBD::Oracle::__DBIC_DBD_VERSION_CHECK_OK__) {
+
+ # no earlier - no later
+ if ($DBD::Oracle::VERSION eq '1.23') {
+ $self->throw_exception(
+ "BLOB/CLOB support in DBD::Oracle == 1.23 is broken, use an earlier or later ".
+ "version (https://rt.cpan.org/Public/Bug/Display.html?id=46016)"
+ );
+ }
+
+ $DBD::Oracle::__DBIC_DBD_VERSION_CHECK_OK__ = 1;
}
- 1;
- };
- if ($self->_is_lob_type($dt)) {
return {
ora_type => $self->_is_text_lob_type($dt)
? DBD::Oracle::ORA_CLOB()
: DBD::Oracle::ORA_BLOB()
};
}
+ else {
+ return undef;
+ }
}
# Handle blob columns in WHERE.
return 'PostgreSQL';
}
-my $type_cache;
sub bind_attribute_by_data_type {
my ($self,$data_type) = @_;
- # Ask for a DBD::Pg with array support
- # pg uses (used?) version::qv()
- require DBD::Pg;
-
- if ($self->_server_info->{normalized_dbms_version} >= 9.0) {
- if (not try { DBD::Pg->VERSION('2.17.2') }) {
- carp_once( __PACKAGE__.': BYTEA columns are known to not work on Pg >='
- . " 9.0 with DBD::Pg < 2.17.2\n" );
+ if ($self->_is_binary_lob_type($data_type)) {
+ # this is a hot-ish codepath, use an escape flag to minimize
+ # amount of function/method calls
+ # additionally version.pm is cock, and memleaks on multiple
+ # ->VERSION calls
+ # the flag is stored in the DBD namespace, so that Class::Unload
+ # will work (unlikely, but still)
+ unless ($DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__) {
+ if ($self->_server_info->{normalized_dbms_version} >= 9.0) {
+ try { DBD::Pg->VERSION('2.17.2'); 1 } or carp (
+ __PACKAGE__.': BYTEA columns are known to not work on Pg >= 9.0 with DBD::Pg < 2.17.2'
+ );
+ }
+ elsif (not try { DBD::Pg->VERSION('2.9.2'); 1 } ) { carp (
+ __PACKAGE__.': DBD::Pg 2.9.2 or greater is strongly recommended for BYTEA column support'
+ )}
+
+ $DBD::Pg::__DBIC_DBD_VERSION_CHECK_DONE__ = 1;
}
- }
- elsif (not try { DBD::Pg->VERSION('2.9.2') }) {
- carp_once( __PACKAGE__.': DBD::Pg 2.9.2 or greater is strongly recommended'
- . "for BYTEA column support.\n" );
- }
- # cache the result of _is_binary_lob_type
- if (!exists $type_cache->{$data_type}) {
- $type_cache->{$data_type} = $self->_is_binary_lob_type($data_type)
- ? +{ pg_type => DBD::Pg::PG_BYTEA() }
- : undef
+ return { pg_type => DBD::Pg::PG_BYTEA() };
+ }
+ else {
+ return undef;
}
-
- $type_cache->{$data_type};
}
sub _exec_svp_begin {