Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
|
our @ISA = qw( DBIx::Class::SQLMaker::ClassicExtensions SQL::Abstract::Classic ) ;
__PACKAGE__->mk_group_accessors( simple => '__select_counter' );
sub select {
$_ [0]->{__select_counter}++;
shift -> next ::method( @_ );
}
1;
|