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