Bugzilla – Attachment 127409 Details for
Bug 29204
Error 500 when execute Circulation report with date period
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29204: Fix reports/issues_stats.pl for MySQL 8
Bug-29204-Fix-reportsissuesstatspl-for-MySQL-8.patch (text/plain), 1.70 KB, created by
Joonas Kylmälä
on 2021-11-06 14:12:01 UTC
(
hide
)
Description:
Bug 29204: Fix reports/issues_stats.pl for MySQL 8
Filename:
MIME Type:
Creator:
Joonas Kylmälä
Created:
2021-11-06 14:12:01 UTC
Size:
1.70 KB
patch
obsolete
>From b27ba2578e22775204f5e097c010dfe3217d8338 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 19 Oct 2021 11:08:29 +0200 >Subject: [PATCH] Bug 29204: Fix reports/issues_stats.pl for MySQL 8 >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Error was: Incorrect DATETIME value: '' > >Test plan >Go to Reports -> Circulation >On Period select "Row" or "Column" and choose a date >Submit > >Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi> >--- > reports/issues_stats.pl | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > >diff --git a/reports/issues_stats.pl b/reports/issues_stats.pl >index 3eb27fb3e2..a9f6716e4c 100755 >--- a/reports/issues_stats.pl >+++ b/reports/issues_stats.pl >@@ -312,7 +312,8 @@ sub calculate { > ( $linesource eq 'items' ) > ? " LEFT JOIN items ON (statistics.itemnumber = items.itemnumber) " > : " LEFT JOIN borrowers ON (statistics.borrowernumber = borrowers.borrowernumber) "; >- $strsth .= " WHERE $line is not null AND $line != '' "; >+ $strsth .= " WHERE $line IS NOT NULL "; >+ $strsth .= " AND $line != '' " if $line ne "datetime"; > } > > if ( $line =~ /datetime/ ) { >@@ -400,7 +401,8 @@ sub calculate { > ( $colsource eq 'items' ) > ? "LEFT JOIN items ON (statistics.itemnumber = items.itemnumber) " > : "LEFT JOIN borrowers ON (statistics.borrowernumber = borrowers.borrowernumber) "; >- $strsth2 .= " WHERE $column IS NOT NULL AND $column != '' "; >+ $strsth .= " WHERE $column IS NOT NULL"; >+ $strsth .= " AND $column != '' " if $column ne "datetime"; > } > > if ( $column =~ /datetime/ ) { >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 29204
:
126475
|
127409
|
127410
|
127442
|
127443