Skip to content

Commit

Permalink
Upgrade DBD::SQLite to v1.75 for Perl 5.36/5.38 (Linux x86_64, aarc…
Browse files Browse the repository at this point in the history
…h64, armv7)

Signed-off-by: Michael Herger <[email protected]>
  • Loading branch information
michaelherger committed Jan 20, 2025
1 parent ba0efae commit 636002d
Show file tree
Hide file tree
Showing 15 changed files with 2,067 additions and 231 deletions.
469 changes: 358 additions & 111 deletions CPAN/arch/5.36/DBD/SQLite.pm

Large diffs are not rendered by default.

385 changes: 384 additions & 1 deletion CPAN/arch/5.36/DBD/SQLite/Constants.pm

Large diffs are not rendered by default.

288 changes: 288 additions & 0 deletions CPAN/arch/5.36/DBD/SQLite/GetInfo.pm

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CPAN/arch/5.36/DBD/SQLite/VirtualTable.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use strict;
use warnings;
use Scalar::Util qw/weaken/;

our $VERSION = '1.58';
our $VERSION = '1.76';
our @ISA;


Expand Down
4 changes: 2 additions & 2 deletions CPAN/arch/5.36/DBD/SQLite/VirtualTable/PerlData.pm
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ sub BEST_INDEX {
# in FILTER() for deciding which rows match the constraints.
my @conditions;
my $ix = 0;
foreach my $constraint (grep {$_->{usable}} @$constraints) {
foreach my $constraint (grep {$_->{usable} and exists $SQLOP2PERLOP{ $_->{op} } } @$constraints) {
my $col = $constraint->{col};
my ($member, $optype);

Expand Down Expand Up @@ -389,7 +389,7 @@ time. Here is a way to do it with a virtual table :
my @files = ... ; # list of files to inspect
# apply the L<stat> function to each file
our $file_stats = [ map {($_, stat $_)} @files];
our $file_stats = [ map { [ $_, stat $_ ] } @files];
# create a temporary virtual table
$dbh->do(<<"");
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified CPAN/arch/5.36/x86_64-linux-thread-multi/auto/DBD/SQLite/SQLite.so
100644 → 100755
Binary file not shown.
Loading

0 comments on commit 636002d

Please sign in to comment.