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

oops, forgot to change a variable name, though I believe the result doesn't change...

This commit is contained in:
Kenichi Ishigaki 2011-03-07 12:24:23 +00:00
parent 7cae132e46
commit 484534cb16

View file

@ -54,7 +54,7 @@ is( scalar(@$ar), 2, 'Got 2 results' );
# known workaround 3
{
local $dbh->{sqlite_see_if_its_a_number} = 1;
my $sth = $dbh->selectall_arrayref(
my $ar = $dbh->selectall_arrayref(
'SELECT bar FROM foo GROUP BY bar HAVING count(*) > ?',
undef, 1
);