Hi All,
the following query
declare default
collation 'http://basex.org/collation?lang=de;strength=secondary';
"anschließend" contains text "anschliessend"
returns false
but the following query
declare default
collation 'http://basex.org/collation?lang=de;strength=secondary';
"anschließend" = "anschliessend"
returns true.
and the following query
declare default
collation 'http://basex.org/collation?lang=de;strength=secondary';
"anschließend" eq "anschliessend"
returns true.
I wonder why 'contains text' does not return true as well? All
full-text related functions doesn't support ß = ss for german
collation.
Alex