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