Subject: Strange error: Unknown collation
From: "peter verhaar" <peter.verhaar1@xxxxxxxxx>
Date: Fri, 9 Jan 2009 15:00:54 +0100
|
Hello,
The following 2 lines:
<xsl:variable name="notImportant" select="(1,2)"/>
<xsl:variable name="errorProducingLine"
select="sum(for $a in $notImportant return number(max(1,2)))"/>
Are producing an error/warning on the closing bracket of the second line:
Error: FOCH0002: Unknown collation
Warning: SXWN9001: A variable with no following sibling instructions
has no effect
But if I remove the Max and change this to something else, it works fine!
<xsl:variable name="errorProducingLine"
select="sum(for $a in $notImportant return number(1+1))"/>
What's wrong with that first second line?
Thanks! Peter
|