[open-ils-commits] [GIT] Evergreen ILS branch rel_2_11 updated. 63e2efcc7b608be80eecb8beec48da9a507a84ea

Evergreen Git git at git.evergreen-ils.org
Mon May 8 09:05:40 EDT 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_11 has been updated
       via  63e2efcc7b608be80eecb8beec48da9a507a84ea (commit)
      from  5613097054de2abf25fb2bc83b3142d26875ddef (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 63e2efcc7b608be80eecb8beec48da9a507a84ea
Author: Bill Erickson <berickxx at gmail.com>
Date:   Tue May 2 11:51:12 2017 -0400

    LP#1687649 Z39.50 CQL query parser honors bools
    
    To test with yaz-client, Z server on localhost, database=evergreen:
    
    Z> open localhost:2210/evergreen
    Z> find @or @attr 1=4 @attr 4=6 "potter" @attr 1=4 @attr 4=6 "piano"
    
    "Number of hits:" value should be greater than zero (~38) using the
    concerto data set.
    
    Similarly, opensrf logs should contain the line:
    
    SRU search string [(title = potter or title = piano)] converted to
    [title:potter || title:piano]
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm
index a338ebe..0245e41 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm
@@ -2123,7 +2123,7 @@ sub sru_search {
         my $op =  '||' if uc $self->op() eq 'OR';
         $op ||=  '&&';
 
-        return  "$leftStr $rightStr";
+        return  "$leftStr $op $rightStr";
     }
 
     sub toEvergreenAuth {

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list