diff --git a/t/43_fts3.t b/t/43_fts3.t index 7af6c2e..64910ee 100644 --- a/t/43_fts3.t +++ b/t/43_fts3.t @@ -33,6 +33,9 @@ BEGIN { if (!grep /ENABLE_FTS3/, DBD::SQLite::compile_options()) { plan skip_all => 'FTS3 is disabled for this DBD::SQLite'; } + if ($DBD::SQLite::sqlite_version_number >= 3011000 and !grep /ENABLE_FTS3_TOKENIZER/, DBD::SQLite::compile_options()) { + plan skip_all => 'FTS3 tokenizer is disabled for this DBD::SQLite'; + } } use Test::NoWarnings;