Skip to content
Extraits de code Groupes Projets
Valider 687a5345 rédigé par Alexandre Morignot's avatar Alexandre Morignot
Parcourir les fichiers

one missing sql query

parent 8fc1dfa6
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -84,7 +84,11 @@ sub flux
my $date = strftime ("%Y-%m-%d", localtime(time - 3600*24));
foreach (@channels) {
my $sth = $dbh->prepare_cached('SELECT COUNT(*) FROM playbot WHERE date = ? and chan = ?');
my $sth = $dbh->prepare_cached('
SELECT COUNT(*)
FROM playbot p
JOIN playbot_chan pc ON p.id = pc.content
WHERE date = ? and chan = ?');
$log->error("Couldn't prepare querie; aborting") unless (defined $sth);
$sth->execute($date, $_)
or $log->error("Couldn't finish transaction: " . $dbh->errstr);
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter