Bugzilla – Attachment 70456 Details for
Bug 19580
Elasticsearch: QueryAutoTruncate exclude period as splitting character in autotruncation
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19580: Exclude period as splitting character for autotrunction
Bug-19580-Exclude-period-as-splitting-character-fo.patch (text/plain), 1.78 KB, created by
Marcel de Rooy
on 2018-01-12 09:40:04 UTC
(
hide
)
Description:
Bug 19580: Exclude period as splitting character for autotrunction
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2018-01-12 09:40:04 UTC
Size:
1.78 KB
patch
obsolete
>From eb1b54f1c867fa917529d0fdb4163c08766e9dc3 Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Sat, 4 Nov 2017 01:01:42 +0000 >Subject: [PATCH] Bug 19580: Exclude period as splitting character for > autotrunction >Content-Type: text/plain; charset=utf-8 > >To test: >0 - Apply Unit test patch only >1 - prove t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t >2 - Should fail >3 - Apply this patch >4 - prove t/db_dependent/Koha_SearchEngine_Elasticsearch_Search.t >5 - should pass >6 - search for 'Local-number.raw:"4"' (or a vlid biblionumber) >7 - should get expected result > >Signed-off-by: David Bourgault <david.bourgault@inlibro.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > Koha/SearchEngine/Elasticsearch/QueryBuilder.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >index a021a0c..95cc86a 100644 >--- a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >+++ b/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm >@@ -603,7 +603,7 @@ will have to wait for a real query parser. > sub _convert_index_strings_freeform { > my ( $self, $search ) = @_; > while ( my ( $zeb, $es ) = each %index_field_convert ) { >- $search =~ s/\b$zeb(?:,[\w-]*)?:/$es:/g; >+ $search =~ s/\b$zeb(?:,[\w\-]*)?:/$es:/g; > } > return $search; > } >@@ -798,7 +798,7 @@ sub _truncate_terms { > > # '"donald duck" title:"the mouse" and peter" get split into > # ['', '"donald duck"', '', ' ', '', 'title:"the mouse"', '', ' ', 'and', ' ', 'pete'] >- my @tokens = split /((?:[\w-]+:)?"[^"]+"|\s+)/, $query; >+ my @tokens = split /((?:[\w\-.]+:)?"[^"]+"|\s+)/, $query; > > # Filter out empty tokens > my @words = grep { $_ !~ /^\s*$/ } @tokens; >-- >2.1.4
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 19580
:
68942
|
68943
|
69094
|
69095
|
70455
| 70456