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

Updated SQLiteUtil.pm to support SQLite released in 2018

This commit is contained in:
Kenichi Ishigaki 2018-01-27 12:31:58 +09:00
parent 7b949c35a4
commit 3a407b1e7b

View file

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