Skip to content
New issue

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

Fix new range index field report #243

Merged
merged 8 commits into from
Oct 27, 2024
12 changes: 12 additions & 0 deletions src/main/xar-resources/indexes-test/collection.xconf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
<create qname="@empty-namespace-attribute" type="xs:string"/>
<create qname="my:my-namespace-element" type="xs:string"/>
<create qname="@my:my-namespace-attribute" type="xs:string"/>

<!-- Indexes on fn data -->
<create qname="function">
<field name="function-name" match="@fn" type="xs:string"/>
<field name="function-group" match="@group" type="xs:string"/>
</create>
<create qname="return">
<field name="return-type" type="xs:string"/>
<field name="return-quantifier" match="@quantifier" type="xs:string"/>
</create>
<create qname="property" type="xs:string"/>
<create qname="error" type="xs:string"/>
</range>
</index>
</collection>
Loading