1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Apply a patch from Björn Höhrmann (fix #31)

This commit is contained in:
Kenichi Ishigaki 2018-11-03 17:13:55 +09:00
parent f3b305d442
commit 1eda646cd8

View file

@ -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(<<"");