zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #10766
[Bug 925133] Re: replace string restriction with xs:boolean in csv-options.xsd
** Changed in: zorba
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of Zorba
Coders, which is the registrant for Zorba.
https://bugs.launchpad.net/bugs/925133
Title:
replace string restriction with xs:boolean in csv-options.xsd
Status in Zorba - The XQuery Processor:
Fix Released
Bug description:
csv-options.xsd contains these attribute definitions:
<attribute name="ignore-foreign-input" default="false">
<simpleType>
<restriction base="string">
<pattern value="true|false"/>
</restriction>
</simpleType>
</attribute>
<attribute name="accept-all-lines" default="false">
<simpleType>
<restriction base="string">
<pattern value="true|false"/>
</restriction>
</simpleType>
</attribute>
What is the reason it was defined using a string restriction and not
xs:boolean?
Like this:
<attribute name="ignore-foreign-input" type="xs:boolean" default="false"/>
<attribute name="accept-all-lines" type="xs:boolean" default="false"/>
To manage notifications about this bug go to:
https://bugs.launchpad.net/zorba/+bug/925133/+subscriptions
References