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

use strict;
=head1 ADDITIONAL METHODS
=head2 with_snmp_object( $ip )
Returns a correlated subquery for the set of C<snmp_object> entry for
the walked data row.
=cut
sub with_snmp_object {
my ($rs, $ip) = @_;
$ip ||= '255.255.255.255';
return $rs->search(undef,{
# NOTE: bind param list order is significant
join => ['snmp_object'],
bind => [$ip],
prefetch => 'snmp_object',
});
}
1;