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:
parent
2abb10acb3
commit
78c0976425
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue