Activity log for bug #1064978

Date Who What changed Old value New value Message
2012-10-10 11:39:26 Sorin Marian Nasoi bug added bug
2012-11-01 13:41:04 Sorin Marian Nasoi tags fots
2012-11-01 13:41:27 Sorin Marian Nasoi tags fots fots new-functionality-requirement
2012-11-01 13:46:59 Sorin Marian Nasoi tags fots new-functionality-requirement fots new-functionality-requirement xqxq
2012-11-01 13:47:15 Sorin Marian Nasoi zorba: importance Undecided Medium
2012-11-01 13:47:20 Sorin Marian Nasoi zorba: milestone 2.8
2012-11-01 15:49:39 Sorin Marian Nasoi zorba: importance Medium High
2013-01-22 07:47:34 Chris Hillery zorba: milestone 2.8 2.9
2013-02-26 23:46:17 Juan Zacarias branch linked lp:~zorba-coders/zorba/bug1064978
2013-03-27 21:44:02 Chris Hillery zorba: status New In Progress
2013-03-28 17:11:41 Sorin Marian Nasoi tags fots new-functionality-requirement xqxq fots-driver new-functionality-requirement xqxq
2013-05-01 15:11:27 Chris Hillery zorba: milestone 2.9 3.0
2013-05-01 15:13:47 Sorin Marian Nasoi description I would need the following signature added to XQXQ: declare %an:sequential function xqxq:bind-variable( $query-key as xs:anyURI, $var as xs:QName, $value as xs:string*) as empty-sequence() external ; such that the XQXQ can cast to the correct type internally. details about the issues I have: - one creates a XQUERY (please see below) that raises an error because of the external variable binding: xqxq:bind-variable( $queryID, xs:QName("ext"), "5"); should be xqxq:bind-variable( $queryID, xs:QName("ext"), xs:integer(5)); XQUERY: import module namespace xqxq = 'http://www.zorba-xquery.com/modules/xqxq'; variable $queryID := xqxq:prepare-main-module('xquery version ''3.0''; declare namespace o = ''http://www.zorba-xquery.com/options/features'';declare option o:enable ''hof''; declare variable $ext as xs:integer external := 0; <a>{$ext}</a>'); xqxq:bind-variable( $queryID, xs:QName("ext"), "5"); xqxq:evaluate($queryID) I would need the following signature added to XQXQ: declare %an:sequential function xqxq:bind-variable(   $query-key as xs:anyURI,   $var as xs:QName,   $value as xs:string*) as empty-sequence() external ; such that the XQXQ can cast to the correct type internally. details about the issues I have: - one creates a XQUERY (please see below) that raises an error because of the external variable binding: xqxq:bind-variable( $queryID, xs:QName("ext"), "5"); should be xqxq:bind-variable( $queryID, xs:QName("ext"), xs:integer(5)); XQUERY: import module namespace xqxq = 'http://www.zorba-xquery.com/modules/xqxq'; variable $queryID := xqxq:prepare-main-module('xquery version ''3.0''; declare variable $ext as xs:integer external := 0; <a>{$ext}</a>'); xqxq:bind-variable( $queryID, xs:QName("ext"), "5"); xqxq:evaluate($queryID)
2013-05-01 19:17:46 Sorin Marian Nasoi tags fots-driver new-functionality-requirement xqxq new-functionality-requirement xqxq