mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 06:08:38 -04:00
Add 2022 to SQLiteUtil::year
This commit is contained in:
parent
4266881e66
commit
1bfcf7c38e
1 changed files with 1 additions and 0 deletions
|
@ -471,6 +471,7 @@ sub year {
|
|||
my $self = shift;
|
||||
return "snapshot" if $self->is_snapshot;
|
||||
my $version = $self->as_num;
|
||||
return 2022 if $version >= 3370200;
|
||||
return 2021 if $version >= 3340100;
|
||||
return 2020 if $version >= 3310000;
|
||||
return 2019 if $version >= 3270000;
|
||||
|
|
Loading…
Add table
Reference in a new issue