We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2c39859 + 36ffb9b commit 3dc5ab2Copy full SHA for 3dc5ab2
1 file changed
t/61-escape.t
@@ -52,6 +52,7 @@ subtest 'self escape' => sub {
52
53
subtest 'use wildcard charactor as escapr_char' => sub {
54
plan skip_all => 'MariaDB does not support it' if Foo->driver->dbh->{Driver}->{Name} eq 'MariaDB';
55
+ plan skip_all => 'SQLite does not support it' if Foo->driver->dbh->{Driver}->{Name} eq 'SQLite'; # fails with DBD::SQLite@1.44 and older
56
my @got = Foo->search({ text => { op => 'LIKE', value => '100_%', escape => '_' } });
57
is scalar(@got), 1, 'right number';
58
is $got[0]->name, 'percent', 'right name';
0 commit comments