[open-ils-commits] [GIT] Evergreen ILS branch master updated. d8715b95d8632d93739e7acfe19783e3b4b325e7

Evergreen Git git at git.evergreen-ils.org
Mon May 8 09:05:39 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, master has been updated
       via  d8715b95d8632d93739e7acfe19783e3b4b325e7 (commit)
      from  4ee417ec7773f7771a2461d6f4eb1dfa3a65f6f4 (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 d8715b95d8632d93739e7acfe19783e3b4b325e7
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 e9e3487..bb1dbd6 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/SuperCat.pm
@@ -2125,7 +2125,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