The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011 #! /usr/bin/perluse Test::More tests => 1;use Sphinx::Search; my $sphinx = Sphinx::Search->new(); eval { my $r = $sphinx->SetFilter('mystring', ['4bb4afe18d9c4e550798b543']);};ok(! $@, "string attribute filtering");
#! /usr/bin/perl
use
Test::More
tests
=> 1;
Sphinx::Search;
my
$sphinx
= Sphinx::Search->new();
eval
{
$r
=
->SetFilter(
'mystring'
, [
'4bb4afe18d9c4e550798b543'
]);
};
ok(! $@,
"string attribute filtering"
);