We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eXist-db does not appear to correctly support and enforce type parameters, e.g. map(xs:integer, xs:string) and element(my-name).
map(xs:integer, xs:string)
element(my-name)
As such the eXist XQTS Test Runner takes a relaxed approach to checking them, see: https://github.com/eXist-db/exist-xqts-runner/blob/master/src/main/scala/org/exist/xqts/runner/TestCaseRunnerActor.scala#L1042. This means that at present we may report passes where we should report failures. We have two options:
The text was updated successfully, but these errors were encountered:
Strongly in favour of option 2. A first PR to check for function types is already open eXist-db/exist#3389
Sorry, something went wrong.
No branches or pull requests
eXist-db does not appear to correctly support and enforce type parameters, e.g.
map(xs:integer, xs:string)
andelement(my-name)
.As such the eXist XQTS Test Runner takes a relaxed approach to checking them, see: https://github.com/eXist-db/exist-xqts-runner/blob/master/src/main/scala/org/exist/xqts/runner/TestCaseRunnerActor.scala#L1042.
This means that at present we may report passes where we should report failures. We have two options:
The text was updated successfully, but these errors were encountered: