Bug 27021: Make chaining ->empty always return an empty resultset
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 13 Nov 2020 18:54:32 +0000 (15:54 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 16 Nov 2020 12:46:51 +0000 (13:46 +0100)
commit55835ccfaffef48b924857e18bfd964aebda3a0a
treea3fbe57025ace784e240667a3df8b7c010ab1499
parenta386954b8b17925ed213a56878e1d453ba8c7635
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>
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Objects.pm