blob: bff7ddaecedaadfa56eb98fd94c726b24e25afde [file] [log] [blame]
(:*******************************************************:)
(: Test: version_declaration-003.xq :)
(: Written By: Pulkita Tyagi :)
(: Date: Tue Aug 9 04:11:16 2005 :)
(: Purpose: Demonstrates version declaration,the version :)
(: declaration occurs at the beginning of the :)
(: module and identifies the applicable XQuery :)
(: syntax and semantics for the module :)
(:*******************************************************:)
xquery version '1.0';
declare boundary-space preserve;
declare default order empty greatest;
declare namespace ns = "http://www.example.org/";
(: insert-start :)
declare variable $input-context external;
(: insert-end :)
for $b in $input-context//book
stable order by xs:decimal($b/price) empty greatest
return $b/title