throw away single ampersand and pipe
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 9 Apr 2010 02:16:56 +0000 (02:16 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 9 Apr 2010 02:16:56 +0000 (02:16 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@16188 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Storage/QueryParser.pm

index cc4dc54..948346b 100755 (executable)
@@ -622,15 +622,17 @@ sub decompose {
             my $atom = $1;
             my $after = $';
 
-            my $class_node = $struct->classed_node($current_class);
+            $_ = $after;
+            $last_type = '';
+
             my $negator = ($atom =~ s/^-//o) ? '!' : '';
             my $truncate = ($atom =~ s/\*$//o) ? '*' : '';
 
-            $class_node->add_fts_atom( $atom, suffix => $truncate, prefix => $negator, node => $class_node );
-            $struct->joiner( '&' );
-
-            $_ = $after;
-            $last_type = '';
+            if (!grep { $atom eq $_ } ('&','|')) { # throw away & and |, not allowed in tsquery, and not really useful anyway
+                my $class_node = $struct->classed_node($current_class);
+                $class_node->add_fts_atom( $atom, suffix => $truncate, prefix => $negator, node => $class_node );
+                $struct->joiner( '&' );
+            }
         } 
 
         last unless ($_);