[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
RE: [xml-dev] Problem about imported schema type when processing XQuery module import
- From: "Michael Kay" <mike@saxonica.com>
- To: "'he harrison'" <harrison076@gmail.com>,<xml-dev@lists.xml.org>
- Date: Wed, 2 Jan 2008 09:23:14 -0000
I think the mailing list at talk@x-query.com would be a better place for
such a question. As it happens, your question is very similar to one raised this
morning on that list by Weihua Jiang of Intel.
I believe that your query violates the rule in the
penultimate bullet of 2.2.5 in the XQuery specification:
"For a
given query, define a participating ISSD as the in-scope schema definitions of a module that is used in evaluating the query. If two
participating ISSDs contain a definition for the same schema type, element name,
or attribute name, the definitions must be equivalent in both
ISSDs."
The introductory paragraph of 2.2.5 says "This specification does not define
the result of a query under
any condition in which one or more of these constraints is not satisfied." - in other words, it's an error to have two
different types with the same name, but it's not an error that an implementation
is required to detect and report. So it's not surprising that you get different
results from different processors, nor that the results are "obviously
wrong".
Section 2.2.5 also imposes constraints that require the
types derived from validating input documents to be consistent with those that
are imported into the static context.
Michael Kay
Hi, I come up with a problem when reading XQuery spec., following
is my case:
a.xq:
module namespace ma="http://www.w3.org/TestModules/moduleA";
import
schema namespace simple="http://www.w3.org/XQueryTest/simple"
at "schema_a.xsd";
declare function ma:funcA()
{
"40"
cast as simple:myType
};
b.xq:
module namespace mb="http://www.w3.org/TestModules/moduleB";
import
module namespace ma="
http://www.w3.org/TestModules/moduleA" at "a.xq";
declare function
mb:funcB()
{
ma:funcA() treat as
xs:integer
};
c.xq:
declare namespace mc="
http://www.w3.org/TestModules/moduleC";
import module namespace mb="http://www.w3.org/TestModules/moduleB"
at "b.xq";
import schema namespace simple=" http://www.w3.org/XQueryTest/simple"
at "schema_c.xsd";
declare function mc:funcC()
{
mb:funcB() instance of
simple:myType
};
<result>{mc:funcC()}</result>
schema_a.xsd:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:simple="
http://www.w3.org/XQueryTest/simple"
targetNamespace="http://www.w3.org/XQueryTest/simple"
elementFormDefault="qualified" attributeFormDefault="qualified"
>
<xs:simpleType name =
"myType">
<xs:restriction base =
"xs:int">
<xs:minInclusive value =
"1"/>
<xs:maxInclusive value =
"50"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
schema_c.xsd:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema "
xmlns:simple="http://www.w3.org/XQueryTest/simple"
targetNamespace="http://www.w3.org/XQueryTest/simple
"
elementFormDefault="qualified"
attributeFormDefault="qualified"
>
<xs:simpleType name =
"myType">
<xs:restriction base =
"xs:int">
<xs:minInclusive value =
"51"/>
<xs:maxInclusive value =
"100"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
Main
module is c.xq, what should be output?
The key problem is, whether we need
to keep different type definition in each module,
in case imported types
have same name and actually are different?
I tried some XQuery processors,
they all give different result and most of them are obviously wrong...
Another further problem is, if we choose to ignore types imported from
other modules, while we need to recognize types bring by XML
documents,
then it seems confusion when we handle a returned value of a
function, as we need to distinguish where the value comes from:
defined by
module or get from document.
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]