You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@daffodil.apache.org by "Steve Lawrence (JIRA)" <ji...@apache.org> on 2019/04/12 20:45:00 UTC

[jira] [Created] (DAFFODIL-2108) Facet restrictions now allowed on xs:decimal types with bad errror

Steve Lawrence created DAFFODIL-2108:
----------------------------------------

             Summary: Facet restrictions now allowed on xs:decimal types with bad errror
                 Key: DAFFODIL-2108
                 URL: https://issues.apache.org/jira/browse/DAFFODIL-2108
             Project: Daffodil
          Issue Type: Bug
          Components: Diagnostics, Front End
            Reporter: Steve Lawrence


If you have something like this:

{code:xml}
<xs:element name="foo">
  <xs:simpleType>
    <xs:restriction base="xs:decimal">
      <xs:minInclusive value="0" />
      <xs:maxInclusive value="10" />
    </xs:restriction>
  </xs:simpleType>
</xs:element>
{code}

You get the following unhelpful error message:
{quote}
[error] Schema Definition Error: checkValueSpaceFacetRange - Unrecognized primitive type: Decimal
{quote}
Which prevents you from being able to use facet restrictions on xs:decimal types.

It looks like we are just missing a case for Decimal in the checkValueSpaceFacetRange function.

While we're at it, the SDE should also be changed to an Assert, since the catch-all case should never happen except when we have a bug in the logic (like we have now).



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)