From ffd1c1bf422588589c64f37aabe8787b96b89386 Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Tue, 8 Aug 2023 20:06:32 +0200 Subject: [PATCH] Removing bind parameter. --- lib/BurguillosInfo/DB/Migrations.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BurguillosInfo/DB/Migrations.pm b/lib/BurguillosInfo/DB/Migrations.pm index 05e9006..f2bcb66 100644 --- a/lib/BurguillosInfo/DB/Migrations.pm +++ b/lib/BurguillosInfo/DB/Migrations.pm @@ -50,7 +50,7 @@ sub _populate_locations ($dbh) { my $tracking = BurguillosInfo::Tracking->new( BurguillosInfo->new ); my $page = 0; while (1) { - my $data = $dbh->selectall_arrayref( <<"EOF", { Slice => {} }, $page ); + my $data = $dbh->selectall_arrayref( <<"EOF", { Slice => {} } ); SELECT uuid, remote_address FROM requests WHERE date > NOW() - interval '2 months'