Bugzilla – Attachment 113627 Details for
Bug 27021
Chaining on Koha::Objects->empty should always return an empty resultset
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27021: Make chaining ->empty always return an empty resultset
Bug-27021-Make-chaining--empty-always-return-an-em.patch (text/plain), 1.05 KB, created by
Tomás Cohen Arazi (tcohen)
on 2020-11-13 19:01:34 UTC
(
hide
)
Description:
Bug 27021: Make chaining ->empty always return an empty resultset
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2020-11-13 19:01:34 UTC
Size:
1.05 KB
patch
obsolete
>From cb3b37ccea5cd8cbc9e3e80d58b282276db9fc56 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 13 Nov 2020 15:54:32 -0300 >Subject: [PATCH] Bug 27021: Make chaining ->empty always return an empty > resultset > >This patch borrows the implementation Martin did on bug 27002, to >woraround this issue, and implements it properly on the >Koha::Objects->empty method. > >To test: >1. Apply the regression tests patch >2. Run: > $ kshell > k$ prove t/db_dependent/Koha/Objects.t >=> FAIL: Tests fail! The resultset should be empty and it isn't! >3. Apply this patch >4. Repeat 2 >=> SUCCESS: Tests pass! >5. Sign off! > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > Koha/Objects.pm | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/Koha/Objects.pm b/Koha/Objects.pm >index 3ea47270488..2f16b358885 100644 >--- a/Koha/Objects.pm >+++ b/Koha/Objects.pm >@@ -377,6 +377,7 @@ sub empty { > class => $self > ) unless ref $self; > >+ $self = $self->search(\'0 = 1'); > $self->_resultset()->set_cache([]); > > return $self; >-- >2.29.2
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 27021
:
113626
|
113627
|
113636
|
113637
|
113638
|
113639