You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 'defaultOperator' configuration parameter (in schema.xml) was deprecated in Solr 5 and removed in Solr 6 . This can affect queries where the operator (either 'and' or 'or') is not specified between query terms, as the default would be assumed in these cases, i.e. the query
The 'defaultOperator' configuration parameter (in schema.xml) was deprecated in Solr 5 and removed in Solr 6 . This can affect queries where the operator (either 'and' or 'or') is not specified between query terms, as the default would be assumed in these cases, i.e. the query
could be interpreted as
"title=test AND page"
or"title=test OR page"
depending on the default operator.This is significant, because the default for metacat is set to 'AND' which will no longer be the case when Solr 7.x is implemented, i.e.:
https://github.com/NCEAS/metacat/blob/master/metacat-common/src/main/resources/solr-home/conf/schema.xml#L427
Check the 'query()' routine to see if
&q.op=AND
needs to be added to queries that are constructed by this method.The text was updated successfully, but these errors were encountered: