From 484534cb16db31825051ca5346d555ead4d012d0 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Mon, 7 Mar 2011 12:24:23 +0000 Subject: [PATCH] oops, forgot to change a variable name, though I believe the result doesn't change... --- t/rt_29058_group_by.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/rt_29058_group_by.t b/t/rt_29058_group_by.t index e1d6ab2..bb8219d 100644 --- a/t/rt_29058_group_by.t +++ b/t/rt_29058_group_by.t @@ -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 );