1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-06 21:58:01 -04:00

Add 2022 to SQLiteUtil::year

This commit is contained in:
Kenichi Ishigaki 2022-01-07 05:48:02 +09:00
parent 4266881e66
commit 1bfcf7c38e

View file

@ -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;