1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

update SQLiteUtil to support versions released in 2017

This commit is contained in:
Kenichi Ishigaki 2017-01-04 00:29:05 +09:00
parent 2abb10acb3
commit 78c0976425

View file

@ -367,6 +367,7 @@ sub year {
my $self = shift;
return "snapshot" if $self->is_snapshot;
my $version = $self->as_num;
return 2017 if $version >= 3160000;
return 2016 if $version >= 3100000;
return 2015 if $version >= 3080800;
return 2014 if $version >= 3080300;