- From: Ashok Malhotra <ashokma@microsoft.com>
- Date: Tue, 4 Feb 2003 05:06:30 -0800
- To: <xquery@attbi.com>, <public-qt-comments@w3.org>
Thank you for your comments. Please see responses inline. All the best, Ashok -----Original Message----- From: XQuery [mailto:xquery@attbi.com] Sent: Sunday, February 02, 2003 7:21 PM To: public-qt-comments@w3.org Subject: Feedback on XQuery F&O This feedback applies to the Nov15th XQuery F&O at http://www.w3.org/TR/2002/WD-xquery-operators-20021115/ ---- 3 (Error function) and Issue #181 (semantics of fn:error) Consider aligning this function with XSLT's message system (which can optionally terminate or not). ---- [AM] The error function may be implemented in different ways by languages that use Xpath. XSLT may want to use the message system but this is their decision. 8.3.1 (op:duration-equal) Dead code This function is defined here, but not used in the operator mapping of the XQuery spec. Perhaps related to the open item to cut it (issue#185). ---- [AM] Removed. 8.3.1-8.3.21 (op:*-equal) Useless definitions "Returns true if and only if $operand1 is exactly equal to $operand2." Well, duh. But what is the meaning of the phrase "is exactly equal to" ?? [AM] Should we say valuesd are exactly equal. It's hard to say something useful without a multi-page disquisition on equality. Feel free to suggest alternate wording. (The ordinary date/time types point to the XML Schema spec, but for some reason the Gregorian types do not. For each type, either point to the XML Schema spec, or else repeat its definitions here. Don't make statements that are devoid of content.) [AM] I'll look into aligning the styles. ---- 13.1.7 (fn:deep-equal) The equivalent XQuery given for deep-equal() is incorrect. When both nodes lack a name, the second condition fails. A corrected version would be: if (not(fn:empty(fn:node-name($parameter1)) and fn:empty(fn:node-name($parameter2))) and (fn:node-name($parameter1) != fn:node-name($parameter2)) then false() else On a minor related note, this query given will also fail to compile, since it always writes false instead of false(). [AM] Thanks! I'll check that ---- 14.3.1 (fn:sequence-deep-equal) The sequence-deep-equal() function is strangely asymmetric with the sequence-node-equal() function. The latter returns the empty sequence if either argument is empty, but the former does not. [AM] I'll raise this with the taskforce.
Received on Tuesday, 4 February 2003 08:06:54 UTC