Xwiki OR operator with quotes gets treated like AND

As I understand SOLR syntax, if I want to perform an OR query with the terms A or b, I simply need to search with the following string

A OR B

Which works fine. However, if I put A and B in quotes it’s treated like an AND query

“A” OR “B”

I tried this on the playground and verified my results

I might have the syntax wrong. If so, how do I do a proper OR search?

Hello, https://extensions.xwiki.org/xwiki/bin/view/Extension/Solr%20Search%20Application#HSearchSyntax should help.

Thx