The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package # hide from PAUSE
DBIx::Class::CDBICompat::DestroyWarning;
use strict;
sub DESTROY {
my ($self) = @_;
my $class = ref $self;
warn "$class $self destroyed without saving changes to "
.join(', ', keys %{$self->{_dirty_columns} || {}})
if keys %{$self->{_dirty_columns} || {}};
}
1;