Bug 27138 - Host items are not included in Z39 results when using EasyAnalytics
Summary: Host items are not included in Z39 results when using EasyAnalytics
Status: Failed QA
Alias: None
Product: Koha
Classification: Unclassified
Component: Searching (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Nick Clemens
QA Contact: Marcel de Rooy
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-12-03 01:35 UTC by Nick Clemens
Modified: 2022-11-23 17:31 UTC (History)
5 users (show)

See Also:
Change sponsored?: ---
Patch complexity: Small patch
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments
Bug 27138: Index host items in child records when sending to search engine (11.01 KB, patch)
2020-12-03 01:45 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.33 KB, patch)
2021-01-14 13:24 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (11.08 KB, patch)
2021-02-25 15:15 UTC, Andrew Fuerste-Henry
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.39 KB, patch)
2021-02-25 15:16 UTC, Andrew Fuerste-Henry
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (11.13 KB, patch)
2021-02-25 15:54 UTC, Andrew Fuerste-Henry
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.44 KB, patch)
2021-02-25 15:54 UTC, Andrew Fuerste-Henry
Details | Diff | Splinter Review
Bug 27138: Add preference EmbedHostItemsInSearchEngine (9.50 KB, patch)
2021-06-16 11:57 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (11.14 KB, patch)
2021-10-04 14:53 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.44 KB, patch)
2021-10-04 14:53 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Add preference EmbedHostItemsInSearchEngine (9.48 KB, patch)
2021-10-04 14:53 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Import needed subroutines (956 bytes, patch)
2021-10-04 14:53 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (9.59 KB, patch)
2021-12-02 15:33 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.44 KB, patch)
2021-12-02 15:33 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Add preference EmbedHostItemsInSearchEngine (8.52 KB, patch)
2021-12-02 15:33 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Import needed subroutines (956 bytes, patch)
2021-12-02 15:33 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Remove extraneous require and use Koha::Items (993 bytes, patch)
2021-12-02 15:33 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (12.46 KB, patch)
2022-08-18 16:08 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.43 KB, patch)
2022-08-18 16:08 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Add preference EmbedHostItemsInSearchEngine (9.36 KB, patch)
2022-08-18 16:08 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Import needed subroutines (855 bytes, patch)
2022-08-18 16:09 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Index host items in child records when sending to search engine (12.46 KB, patch)
2022-11-23 12:52 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: (follow-up) Embed host items when performing index from command line (1.43 KB, patch)
2022-11-23 12:52 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Add preference EmbedHostItemsInSearchEngine (8.41 KB, patch)
2022-11-23 12:52 UTC, Nick Clemens
Details | Diff | Splinter Review
Bug 27138: Import needed subroutines (858 bytes, patch)
2022-11-23 12:52 UTC, Nick Clemens
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Nick Clemens 2020-12-03 01:35:16 UTC
If a library enables EasyAnalytics and links two records in the catalog then the host items show on the child record.

If you search for these records via Z3950 (via zebra directly or the responder) the host items are not shown
Comment 1 Nick Clemens 2020-12-03 01:45:42 UTC
Created attachment 114126 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch
Comment 2 Nick Clemens 2021-01-14 13:24:48 UTC
Created attachment 115158 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results
Comment 3 Andrew Fuerste-Henry 2021-02-25 15:15:57 UTC
Created attachment 117333 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Comment 4 Andrew Fuerste-Henry 2021-02-25 15:16:01 UTC
Created attachment 117334 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Comment 5 Andrew Fuerste-Henry 2021-02-25 15:54:04 UTC
Created attachment 117346 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 6 Andrew Fuerste-Henry 2021-02-25 15:54:07 UTC
Created attachment 117347 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 7 Katrin Fischer 2021-05-16 21:54:54 UTC
I feel like this would classify more like an enhancement. The feature as is exists for many years now and while this is understandable request, I believe it's not a bug. The linking 773 entry is exported?
Comment 8 Nick Clemens 2021-06-15 20:11:13 UTC
(In reply to Katrin Fischer from comment #7)
> I feel like this would classify more like an enhancement. The feature as is
> exists for many years now and while this is understandable request, I
> believe it's not a bug. 

I feel this is a bug, because the view in the catalog, and the view in Z39 are different, as well as the OPAC showing host item on details page and not the results page, but I can see the view of this as an enhancement.

> The linking 773 entry is exported?

I don't understand
Comment 9 Katrin Fischer 2021-06-15 22:19:10 UTC
In Koha the host items shown on the child records is just a "view" feature, we store the data differently. The item is actually still only attached to one record. For me Z39.50 is more a "data" than a "view" thing, so I think that's where I was coming from.

But of course I can see use cases for this too.

If I understand correctly, you will have multiple records with completely the same items (including itemnumber, barcode etc.) after the patch. Depending on what you use Z39.50 for, I wonder if this could cause issues in other systems.

I feel an urge to make this at least a configuration switch maybe?
Comment 10 Nick Clemens 2021-06-16 11:57:50 UTC
Created attachment 122035 [details] [review]
Bug 27138: Add preference EmbedHostItemsInSearchEngine
Comment 11 Nick Clemens 2021-06-16 11:58:39 UTC
(In reply to Katrin Fischer from comment #9)
> In Koha the host items shown on the child records is just a "view" feature,
> we store the data differently. The item is actually still only attached to
> one record. For me Z39.50 is more a "data" than a "view" thing, so I think
> that's where I was coming from.
> 
> But of course I can see use cases for this too.
> 
> If I understand correctly, you will have multiple records with completely
> the same items (including itemnumber, barcode etc.) after the patch.
> Depending on what you use Z39.50 for, I wonder if this could cause issues in
> other systems.
> 
> I feel an urge to make this at least a configuration switch maybe?


I added a syspref EmbedHostItemsInSearchEngine
Comment 12 Nick Clemens 2021-10-04 14:53:15 UTC
Created attachment 125698 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 13 Nick Clemens 2021-10-04 14:53:18 UTC
Created attachment 125699 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 14 Nick Clemens 2021-10-04 14:53:21 UTC
Created attachment 125700 [details] [review]
Bug 27138: Add preference EmbedHostItemsInSearchEngine
Comment 15 Nick Clemens 2021-10-04 14:53:25 UTC
Created attachment 125701 [details] [review]
Bug 27138: Import needed subroutines
Comment 16 Marcel de Rooy 2021-10-05 11:36:19 UTC
+    require C4::Items;

Why? There is a use in the module already.

Formally, we should add 'use Koha::Items' though..
Comment 17 Nick Clemens 2021-12-02 15:33:14 UTC
Created attachment 128175 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 18 Nick Clemens 2021-12-02 15:33:17 UTC
Created attachment 128176 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 19 Nick Clemens 2021-12-02 15:33:21 UTC
Created attachment 128177 [details] [review]
Bug 27138: Add preference EmbedHostItemsInSearchEngine
Comment 20 Nick Clemens 2021-12-02 15:33:24 UTC
Created attachment 128178 [details] [review]
Bug 27138: Import needed subroutines
Comment 21 Nick Clemens 2021-12-02 15:33:28 UTC
Created attachment 128179 [details] [review]
Bug 27138: (follow-up) Remove extraneous require and use Koha::Items
Comment 22 Katrin Fischer 2022-03-14 20:56:39 UTC
I am sorry, but these no longer apply, could you please rebase?

Bug 27138 - Host items are not included in Z39 results when using EasyAnalytics

128175 - Bug 27138: Index host items in child records when sending to search engine
128176 - Bug 27138: (follow-up) Embed host items when performing index from command line
128177 - Bug 27138: Add preference EmbedHostItemsInSearchEngine
128178 - Bug 27138: Import needed subroutines
128179 - Bug 27138: (follow-up) Remove extraneous require and use Koha::Items

Apply? [(y)es, (n)o, (i)nteractive] y
Applying: Bug 27138: Index host items in child records when sending to search engine
Applying: Bug 27138: (follow-up) Embed host items when performing index from command line
Using index info to reconstruct a base tree...
M	Koha/BiblioUtils.pm
Falling back to patching base and 3-way merge...
Auto-merging Koha/BiblioUtils.pm
Applying: Bug 27138: Add preference EmbedHostItemsInSearchEngine
error: sha1 information is lacking or useless (C4/Biblio.pm).
error: could not build fake ancestor
Patch failed at 0001 Bug 27138: Add preference EmbedHostItemsInSearchEngine
hint: Use 'git am --show-current-patch=diff' to see the failed patch
When you have resolved this problem run "git bz apply --continue".
If you would prefer to skip this patch, instead run "git bz apply --skip".
To restore the original branch and stop patching run "git bz apply --abort".
Patch left in /tmp/Bug-27138-Add-preference-EmbedHostItemsInSearchEng-GFwjoV.patch
Comment 23 Nick Clemens 2022-08-18 16:08:52 UTC
Created attachment 139401 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 24 Nick Clemens 2022-08-18 16:08:55 UTC
Created attachment 139402 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 25 Nick Clemens 2022-08-18 16:08:58 UTC
Created attachment 139403 [details] [review]
Bug 27138: Add preference EmbedHostItemsInSearchEngine
Comment 26 Nick Clemens 2022-08-18 16:09:02 UTC
Created attachment 139404 [details] [review]
Bug 27138: Import needed subroutines
Comment 27 Nick Clemens 2022-11-23 12:52:11 UTC
Created attachment 144200 [details] [review]
Bug 27138: Index host items in child records when sending to search engine

On the Koha side we seperate the items from the MARC record but we do put them in
the search engines

For easy analytics we embed host items when displaying results after fetching from the search engine

We can simpify things and improve results by including the host items when indexing

To test:
 1 - Enable EasyAnalyticalRecords
 2 - Find a record in the staff client
 3 - From details page select Edit->Link to host record
 4 - Attach a barcode from a different record
 5 - Search for that barcode in the staff client
 6 - Only host record is returned
 7 - Perform a search that returns the child record and others
 8 - Note the host item is listed on the child record in the results page
 9 - Repeat on OPAC
10 - Note on opac that host item is missing on results
11 - Apply patch
12 - Search for barcode
13 - Child and host record returned on both staff and OPAC
14 - Child record correctly includes host item on staff and OPAC
15 - Connect to the Z3950 responder or zebra directly
     yaz-client localhost:2100
     yaz-client unix:/var/run/koha/kohadev/bibliosocket
16 - Search for the child record
     base biblios
     find record_keyword
     show 1+10
17 - Note the record includes the host item
18 - Repeat tests for Elasticsearch

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 28 Nick Clemens 2022-11-23 12:52:16 UTC
Created attachment 144201 [details] [review]
Bug 27138: (follow-up) Embed host items when performing index from command line

The previous patch made sure host items were embedded when indexes were performed inside of Koha (catalg edits, checkins, etc.) but did not affect a command line reindex

To test:
0 - Follow previous test plan to setup records and set search engine to elasticsearch
1 - perl misc/search_tools/rebuild_elasticsearch.pl -d
2 - Search for the barcode and confirm both records are returned
3 - Confirm the host items are included in the results

Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>

Signed-off-by: Michael Sutherland <sudrland@vt.edu>
Comment 29 Nick Clemens 2022-11-23 12:52:21 UTC
Created attachment 144202 [details] [review]
Bug 27138: Add preference EmbedHostItemsInSearchEngine
Comment 30 Nick Clemens 2022-11-23 12:52:25 UTC
Created attachment 144203 [details] [review]
Bug 27138: Import needed subroutines
Comment 31 Andrew Fuerste-Henry 2022-11-23 17:31:16 UTC
> 13 - Child and host record returned on both staff and OPAC
> 14 - Child record correctly includes host item on staff and OPAC

With these patches applied, zebra search by barcode returns only the host on staff and OPAC. On the OPAC, search results when searching for the child record don't include the host item.

I did a reset_all after applying patches. Was there something else I should have done to make the changes apply?