From 2200a59da24f6de49c2408a9c26fbeced11b1789 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 16 Apr 2015 20:24:23 +0900 Subject: [PATCH] "IS NULL" was first supported at SQLite 3.6.19, not 3.6.10 --- t/virtual_table/rt_99748.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/virtual_table/rt_99748.t b/t/virtual_table/rt_99748.t index a42148c..eb17cf9 100644 --- a/t/virtual_table/rt_99748.t +++ b/t/virtual_table/rt_99748.t @@ -34,7 +34,7 @@ our $perl_rows = [ ]; my $tests = 14; -$tests += 1 if has_sqlite('3.6.10'); +$tests += 1 if has_sqlite('3.6.19'); plan tests => 4 + 2 * $tests + @interpolation_attempts + 9; my $dbh = connect_ok( RaiseError => 1, AutoCommit => 1 ); @@ -108,7 +108,7 @@ sub test_table { $res = $dbh->selectcol_arrayref($sql, {}, undef); is_deeply $res, [], $sql; - if (has_sqlite('3.6.10')) { + if (has_sqlite('3.6.19')) { $sql = "SELECT a FROM $table WHERE c IS ?"; $res = $dbh->selectcol_arrayref($sql, {}, undef); is_deeply $res, [7], $sql;