https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24488
--- Comment #82 from Martin Renvoize <[email protected]> --- Comment on attachment 113696 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=113696 Bug 24488: Fix reserve.reserve_id' isn't in GROUP BY Review of attachment 113696: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=24488&attachment=113696) ----------------------------------------------------------------- ::: circ/pendingreserves.pl @@ +190,2 @@ > ); > +my @biblionumbers = uniq $distinct_holds->get_column('biblionumber'); We could do this at the DB level: `my @biblionumbers = $distinct_holds->_resultset->get_column('biblionumber')->func('DISTINCT');` -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
