You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Mikhail Ibraheem <ar...@yahoo.com.INVALID> on 2019/07/03 18:11:36 UTC

org.apache.solr.search.SyntaxError with Join and Tag

Hi,This query :{!tag=_Customer_facet}{!join fromIndex=sf-details toIndex=Downloads from=_CUSTOMER_facet to=_Customer_facet}_ACTIVITY_facet:("Welcome")

gives exception org.apache.solr.search.SyntaxError: Cannot parse '_ACTIVITY_facet:((\"Welcome\"': Encountered \"<EOF>\" at line 1, column 27
While these work fine 
1- {!tag=_Customer_facet}{!join fromIndex=sf-details toIndex=Downloads from=_CUSTOMER_facet to=_Customer_facet}_ACTIVITY_facet:"Welcome"

2- {!join fromIndex=sf-details toIndex=Downloads from=_CUSTOMER_facet to=_Customer_facet}_ACTIVITY_facet:("Welcome")


So when using {!tag} and {!join} I can't use the filter between ()And when using only {!join} I can use the filter between () like ("Welcome")
Please advise.
Thanks