Skip to content

Commit

Permalink
Merge branch 'sqlite' into public/9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Jan 20, 2025
2 parents b96fe9c + 636002d commit 0f6000a
Show file tree
Hide file tree
Showing 31 changed files with 4,133 additions and 460 deletions.
469 changes: 358 additions & 111 deletions CPAN/arch/5.32/DBD/SQLite.pm

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CPAN/arch/5.32/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.32/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 not shown.
Loading

0 comments on commit 0f6000a

Please sign in to comment.