BaseXdb / basex

BaseX Main Repository.
http://basex.org
BSD 3-Clause "New" or "Revised" License
661 stars 268 forks source link

XQuery, Index Rewritings: Mixture of text and attribute comparisons #2211

Closed ChristianGruen closed 1 year ago

ChristianGruen commented 1 year ago
CREATE DB db <x><a>A</a><b b='A'/></x>
XQUERY //*[text() = 'A' or @b = 'A']

Expected: <a>A</a>, <b b="A"/> Returned: <a>A</a>

The correct result is returned if the comparisons are swapped.