Merge lp:~paul-lucas/zorba/pjl-misc2 into lp:zorba

Proposed by Paul J. Lucas
Status: Merged
Approved by: Paul J. Lucas
Approved revision: 11415
Merged at revision: 11690
Proposed branch: lp:~paul-lucas/zorba/pjl-misc2
Merge into: lp:zorba
Diff against target: 4193 lines (+1993/-1967)
12 files modified
include/zorba/internal/qname.h (+19/-1)
include/zorba/pregenerated/diagnostic_list.h (+1/-1)
src/compiler/parser/query_loc.cpp (+2/-2)
src/diagnostics/diagnostic.cpp (+5/-1)
src/diagnostics/diagnostic_en.xml (+1/-1)
src/diagnostics/diagnostic_list_cpp.xq (+1/-1)
src/diagnostics/dict.cpp (+8/-6)
src/diagnostics/dict.h (+2/-2)
src/diagnostics/dict_XX_cpp.xq (+4/-2)
src/diagnostics/pregenerated/diagnostic_list.cpp (+1439/-1439)
src/diagnostics/pregenerated/dict_en.cpp (+510/-510)
src/runtime/csv/csv_impl.cpp (+1/-1)
To merge this branch: bzr merge lp:~paul-lucas/zorba/pjl-misc2
Reviewer Review Type Date Requested Status
Matthias Brantner Approve
Paul J. Lucas Approve
Review via email: mp+202392@code.launchpad.net

Commit message

It turns out there were 2 name collision problems with error dictionary keys. This MP fixes the 2nd one since it requires no changes in user code.

Description of the change

It turns out there were 2 name collision problems with error dictionary keys. This MP fixes the 2nd one since it requires no changes in user code.

To post a comment you must log in.
Revision history for this message
Paul J. Lucas (paul-lucas) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

lp:~paul-lucas/zorba/pjl-misc2 updated
11415. By Paul J. Lucas

Merge from pjl-misc.

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Voting criteria failed for the following merge proposals:

https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392 :
Votes: {'Approve': 1}

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue result for https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392

Stage "CommitZorba" failed.

Check console output at http://jenkins.lambda.nu:8180/job/CommitZorba/279/console to view the results.

lp:~paul-lucas/zorba/pjl-misc2 updated
11416. By Paul J. Lucas

Fixed QueryLoc assignment.

Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc2/+merge/202392

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue succeeded - proposal merged!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'include/zorba/internal/qname.h'
2--- include/zorba/internal/qname.h 2013-09-13 23:06:50 +0000
3+++ include/zorba/internal/qname.h 2014-01-21 03:30:58 +0000
4@@ -17,9 +17,14 @@
5 #ifndef ZORBA_INTERNAL_QNAME_H
6 #define ZORBA_INTERNAL_QNAME_H
7
8+// standard
9+#include <cstring>
10+
11+// Zorba
12 #include <zorba/config.h>
13 #include <zorba/diagnostic.h>
14
15+// local
16 #include "ztd.h"
17
18 namespace zorba {
19@@ -59,7 +64,9 @@
20 *
21 * @param localname The QName's local-name.
22 */
23- FixedQName( char const *localname ) : localname_( localname ) {
24+ FixedQName( char const *localname ) :
25+ localname_( strip_prefix( localname ) )
26+ {
27 }
28
29 // inherited
30@@ -69,6 +76,17 @@
31
32 private:
33 LocalnameType localname_;
34+
35+ static char const* strip_prefix( char const *localname ) {
36+ char const *const colon = strchr( localname, ':' );
37+ return colon ? colon + 1 : localname;
38+ }
39+
40+ template<typename StringType> static
41+ typename std::enable_if<ZORBA_HAS_C_STR(StringType),char const*>::type
42+ strip_prefix( StringType const &localname ) {
43+ return strip_prefix( localname.c_str() );
44+ }
45 };
46
47 /**
48
49=== modified file 'include/zorba/pregenerated/diagnostic_list.h'
50--- include/zorba/pregenerated/diagnostic_list.h 2014-01-16 23:09:20 +0000
51+++ include/zorba/pregenerated/diagnostic_list.h 2014-01-21 03:30:58 +0000
52@@ -1001,7 +1001,7 @@
53
54 extern ZORBA_DLL_PUBLIC ZorbaCSVErrorCode INVALID_OPTION;
55
56-extern ZORBA_DLL_PUBLIC ZorbaCSVErrorCode INVALID_CSV_VALUE;
57+extern ZORBA_DLL_PUBLIC ZorbaCSVErrorCode INVALID_VALUE;
58
59 extern ZORBA_DLL_PUBLIC ZorbaCSVErrorCode MISSING_VALUE;
60
61
62=== modified file 'src/compiler/parser/query_loc.cpp'
63--- src/compiler/parser/query_loc.cpp 2013-02-07 17:24:36 +0000
64+++ src/compiler/parser/query_loc.cpp 2014-01-21 03:30:58 +0000
65@@ -42,8 +42,8 @@
66 unsigned columnEnd ) :
67 theFilename(filename),
68 theLineBegin(lineBegin),
69- theColumnBegin(lineEnd),
70- theLineEnd(columnBegin),
71+ theColumnBegin(columnBegin),
72+ theLineEnd(lineEnd),
73 theColumnEnd(columnEnd)
74 {
75 }
76
77=== modified file 'src/diagnostics/diagnostic.cpp'
78--- src/diagnostics/diagnostic.cpp 2013-10-22 21:37:06 +0000
79+++ src/diagnostics/diagnostic.cpp 2014-01-21 03:30:58 +0000
80@@ -393,7 +393,11 @@
81 }
82
83 char const* Diagnostic::message() const {
84- return diagnostic::dict::lookup( qname().localname() );
85+ diagnostic::QName const &q = qname();
86+ zstring temp( q.prefix() );
87+ temp += ':';
88+ temp += q.localname();
89+ return diagnostic::dict::lookup( temp );
90 }
91
92 ///////////////////////////////////////////////////////////////////////////////
93
94=== modified file 'src/diagnostics/diagnostic_en.xml'
95--- src/diagnostics/diagnostic_en.xml 2014-01-16 23:09:20 +0000
96+++ src/diagnostics/diagnostic_en.xml 2014-01-21 03:30:58 +0000
97@@ -3797,7 +3797,7 @@
98 </entry>
99 </diagnostic>
100
101- <diagnostic code="INVALID_CSV_VALUE">
102+ <diagnostic code="INVALID_VALUE">
103 <value>"$1": invalid type for value of key "$2"</value>
104 </diagnostic>
105
106
107=== modified file 'src/diagnostics/diagnostic_list_cpp.xq'
108--- src/diagnostics/diagnostic_list_cpp.xq 2013-09-14 00:50:33 +0000
109+++ src/diagnostics/diagnostic_list_cpp.xq 2014-01-21 03:30:58 +0000
110@@ -40,7 +40,7 @@
111 if ( $diagnostic/@name )
112 then concat( "_", $diagnostic/@name )
113 else "",
114- '( "', $diagnostic/@code, '" );',
115+ '( "', $namespace/@prefix, ':', $diagnostic/@code, '" );',
116 $util:newline,
117 util:end_guard( $diagnostic )
118 ),
119
120=== modified file 'src/diagnostics/dict.cpp'
121--- src/diagnostics/dict.cpp 2013-12-25 03:52:40 +0000
122+++ src/diagnostics/dict.cpp 2014-01-21 03:30:58 +0000
123@@ -14,19 +14,22 @@
124 * limitations under the License.
125 */
126 #include "stdafx.h"
127+
128+// standard
129 #include <algorithm>
130 #include <cstring>
131 #include <functional>
132 #include <utility> /* for pair */
133-#include <cassert>
134
135+// Zorba
136+#include "system/globalenv.h"
137 #include "util/locale.h"
138
139+// local
140+#include "assert.h"
141 #include "dict.h"
142 #include "dict_impl.h"
143
144-#include "system/globalenv.h"
145-
146 using namespace std;
147 using namespace zorba::locale;
148
149@@ -85,9 +88,8 @@
150 range_type const result =
151 ::equal_range( begin, end, entry_to_find, less_entry() );
152
153- assert(result.first != result.second);
154-
155- return result.first == result.second ? key : result.first->value;
156+ ZORBA_ASSERT( result.first != result.second );
157+ return result.first->value;
158 }
159
160 ///////////////////////////////////////////////////////////////////////////////
161
162=== modified file 'src/diagnostics/dict.h'
163--- src/diagnostics/dict.h 2013-05-31 14:35:14 +0000
164+++ src/diagnostics/dict.h 2014-01-21 03:30:58 +0000
165@@ -50,7 +50,7 @@
166 * Looks up the given key in the language dictionary.
167 *
168 * @param key The key to look up.
169- * @return Returns the value for the given key or \a key if not found.
170+ * @return Returns the value for the given key.
171 */
172 char const* lookup( char const *key );
173
174@@ -59,7 +59,7 @@
175 *
176 * @tparam StringType The key's string type.
177 * @param key The key to look up.
178- * @return Returns the value for the given key or \a key if not found.
179+ * @return Returns the value for the given key.
180 */
181 template<class StringType> inline
182 typename std::enable_if<ZORBA_HAS_C_STR(StringType),char const*>::type
183
184=== modified file 'src/diagnostics/dict_XX_cpp.xq'
185--- src/diagnostics/dict_XX_cpp.xq 2013-06-25 00:41:44 +0000
186+++ src/diagnostics/dict_XX_cpp.xq 2014-01-21 03:30:58 +0000
187@@ -22,8 +22,10 @@
188 for $entry in ( $doc//diagnostic, $doc//entry )
189 let $key :=
190 typeswitch ( $entry )
191- case element(diagnostic)
192- return $entry/@code
193+ case $e as element(diagnostic)
194+ return
195+ let $namespace := $e/parent::namespace/@prefix
196+ return concat( $namespace, ":", $entry/@code )
197 case $e as element(entry)
198 return
199 if ( $e/parent::diagnostic )
200
201=== modified file 'src/diagnostics/pregenerated/diagnostic_list.cpp'
202--- src/diagnostics/pregenerated/diagnostic_list.cpp 2014-01-16 23:09:20 +0000
203+++ src/diagnostics/pregenerated/diagnostic_list.cpp 2014-01-21 03:30:58 +0000
204@@ -28,1505 +28,1505 @@
205
206 namespace err {
207
208-XQueryErrorCode XPST0001( "XPST0001" );
209-
210-
211-XQueryErrorCode XPST0003( "XPST0003" );
212-
213-
214-XQueryErrorCode XPST0005( "XPST0005" );
215-
216-
217-XQueryErrorCode XPST0008( "XPST0008" );
218-
219-
220-XQueryErrorCode XPST0017( "XPST0017" );
221-
222-
223-XQueryErrorCode XPST0051( "XPST0051" );
224-
225-
226-XQueryErrorCode XPST0080( "XPST0080" );
227-
228-
229-XQueryErrorCode XPST0081( "XPST0081" );
230-
231-
232-XQueryErrorCode XPST0083( "XPST0083" );
233-
234-
235-XQueryErrorCode XPTY0004( "XPTY0004" );
236-
237-
238-XQueryErrorCode XPTY0018( "XPTY0018" );
239-
240-
241-XQueryErrorCode XPTY0019( "XPTY0019" );
242-
243-
244-XQueryErrorCode XPTY0020( "XPTY0020" );
245-
246-
247-XQueryErrorCode XPTY0117( "XPTY0117" );
248-
249-
250-XQueryErrorCode XQTY0024( "XQTY0024" );
251-
252-
253-XQueryErrorCode XQTY0030( "XQTY0030" );
254-
255-
256-XQueryErrorCode XQTY0086( "XQTY0086" );
257-
258-
259-XQueryErrorCode XQTY0105( "XQTY0105" );
260-
261-
262-XQueryErrorCode XQST0009( "XQST0009" );
263-
264-
265-XQueryErrorCode XQST0012( "XQST0012" );
266-
267-
268-XQueryErrorCode XQST0013( "XQST0013" );
269-
270-
271-XQueryErrorCode XQST0022( "XQST0022" );
272-
273-
274-XQueryErrorCode XQST0031( "XQST0031" );
275-
276-
277-XQueryErrorCode XQST0032( "XQST0032" );
278-
279-
280-XQueryErrorCode XQST0033( "XQST0033" );
281-
282-
283-XQueryErrorCode XQST0034( "XQST0034" );
284-
285-
286-XQueryErrorCode XQST0035( "XQST0035" );
287-
288-
289-XQueryErrorCode XQST0036( "XQST0036" );
290-
291-
292-XQueryErrorCode XQST0038( "XQST0038" );
293-
294-
295-XQueryErrorCode XQST0039( "XQST0039" );
296-
297-
298-XQueryErrorCode XQST0040( "XQST0040" );
299-
300-
301-XQueryErrorCode XQST0045( "XQST0045" );
302-
303-
304-XQueryErrorCode XQST0046( "XQST0046" );
305-
306-
307-XQueryErrorCode XQST0047( "XQST0047" );
308-
309-
310-XQueryErrorCode XQST0048( "XQST0048" );
311-
312-
313-XQueryErrorCode XQST0049( "XQST0049" );
314-
315-
316-XQueryErrorCode XQST0052( "XQST0052" );
317-
318-
319-XQueryErrorCode XQST0054( "XQST0054" );
320-
321-
322-XQueryErrorCode XQST0055( "XQST0055" );
323-
324-
325-XQueryErrorCode XQST0057( "XQST0057" );
326-
327-
328-XQueryErrorCode XQST0058( "XQST0058" );
329-
330-
331-XQueryErrorCode XQST0059( "XQST0059" );
332-
333-
334-XQueryErrorCode XQST0060( "XQST0060" );
335-
336-
337-XQueryErrorCode XQST0065( "XQST0065" );
338-
339-
340-XQueryErrorCode XQST0066( "XQST0066" );
341-
342-
343-XQueryErrorCode XQST0067( "XQST0067" );
344-
345-
346-XQueryErrorCode XQST0068( "XQST0068" );
347-
348-
349-XQueryErrorCode XQST0069( "XQST0069" );
350-
351-
352-XQueryErrorCode XQST0070( "XQST0070" );
353-
354-
355-XQueryErrorCode XQST0071( "XQST0071" );
356-
357-
358-XQueryErrorCode XQST0076( "XQST0076" );
359-
360-
361-XQueryErrorCode XQST0079( "XQST0079" );
362-
363-
364-XQueryErrorCode XQST0085( "XQST0085" );
365-
366-
367-XQueryErrorCode XQST0087( "XQST0087" );
368-
369-
370-XQueryErrorCode XQST0088( "XQST0088" );
371-
372-
373-XQueryErrorCode XQST0089( "XQST0089" );
374-
375-
376-XQueryErrorCode XQST0090( "XQST0090" );
377-
378-
379-XQueryErrorCode XQST0093( "XQST0093" );
380-
381-
382-XQueryErrorCode XQST0094( "XQST0094" );
383-
384-
385-XQueryErrorCode XQST0097( "XQST0097" );
386-
387-
388-XQueryErrorCode XQST0098( "XQST0098" );
389-
390-
391-XQueryErrorCode XQST0099( "XQST0099" );
392-
393-
394-XQueryErrorCode XQST0103( "XQST0103" );
395-
396-
397-XQueryErrorCode XQST0106( "XQST0106" );
398-
399-
400-XQueryErrorCode XQST0111( "XQST0111" );
401-
402-
403-XQueryErrorCode XQST0113( "XQST0113" );
404-
405-
406-XQueryErrorCode XQST0114( "XQST0114" );
407-
408-
409-XQueryErrorCode XQST0116( "XQST0116" );
410-
411-
412-XQueryErrorCode XQST0120( "XQST0120" );
413-
414-
415-XQueryErrorCode XQST0122( "XQST0122" );
416-
417-
418-XQueryErrorCode XQST0123( "XQST0123" );
419-
420-
421-XQueryErrorCode XQST0126( "XQST0126" );
422-
423-
424-XQueryErrorCode XQST0127( "XQST0127" );
425-
426-
427-XQueryErrorCode XQST0128( "XQST0128" );
428-
429-
430-XQueryErrorCode XPDY0002( "XPDY0002" );
431-
432-
433-XQueryErrorCode XPDY0050( "XPDY0050" );
434-
435-
436-XQueryErrorCode XQDY0025( "XQDY0025" );
437-
438-
439-XQueryErrorCode XQDY0026( "XQDY0026" );
440-
441-
442-XQueryErrorCode XQDY0027( "XQDY0027" );
443-
444-
445-XQueryErrorCode XQDY0041( "XQDY0041" );
446-
447-
448-XQueryErrorCode XQDY0044( "XQDY0044" );
449-
450-
451-XQueryErrorCode XQDY0054( "XQDY0054" );
452-
453-
454-XQueryErrorCode XQDY0061( "XQDY0061" );
455-
456-
457-XQueryErrorCode XQDY0064( "XQDY0064" );
458-
459-
460-XQueryErrorCode XQDY0072( "XQDY0072" );
461-
462-
463-XQueryErrorCode XQDY0074( "XQDY0074" );
464-
465-
466-XQueryErrorCode XQDY0084( "XQDY0084" );
467-
468-
469-XQueryErrorCode XQDY0091( "XQDY0091" );
470-
471-
472-XQueryErrorCode XQDY0092( "XQDY0092" );
473-
474-
475-XQueryErrorCode XQDY0096( "XQDY0096" );
476-
477-
478-XQueryErrorCode XQDY0101( "XQDY0101" );
479-
480-
481-XQueryErrorCode XQDY0102( "XQDY0102" );
482-
483-
484-XQueryErrorCode XTDE1310( "XTDE1310" );
485-
486-
487-XQueryErrorCode FOFD1340( "FOFD1340" );
488-
489-
490-XQueryErrorCode FOFD1350( "FOFD1350" );
491+XQueryErrorCode XPST0001( "err:XPST0001" );
492+
493+
494+XQueryErrorCode XPST0003( "err:XPST0003" );
495+
496+
497+XQueryErrorCode XPST0005( "err:XPST0005" );
498+
499+
500+XQueryErrorCode XPST0008( "err:XPST0008" );
501+
502+
503+XQueryErrorCode XPST0017( "err:XPST0017" );
504+
505+
506+XQueryErrorCode XPST0051( "err:XPST0051" );
507+
508+
509+XQueryErrorCode XPST0080( "err:XPST0080" );
510+
511+
512+XQueryErrorCode XPST0081( "err:XPST0081" );
513+
514+
515+XQueryErrorCode XPST0083( "err:XPST0083" );
516+
517+
518+XQueryErrorCode XPTY0004( "err:XPTY0004" );
519+
520+
521+XQueryErrorCode XPTY0018( "err:XPTY0018" );
522+
523+
524+XQueryErrorCode XPTY0019( "err:XPTY0019" );
525+
526+
527+XQueryErrorCode XPTY0020( "err:XPTY0020" );
528+
529+
530+XQueryErrorCode XPTY0117( "err:XPTY0117" );
531+
532+
533+XQueryErrorCode XQTY0024( "err:XQTY0024" );
534+
535+
536+XQueryErrorCode XQTY0030( "err:XQTY0030" );
537+
538+
539+XQueryErrorCode XQTY0086( "err:XQTY0086" );
540+
541+
542+XQueryErrorCode XQTY0105( "err:XQTY0105" );
543+
544+
545+XQueryErrorCode XQST0009( "err:XQST0009" );
546+
547+
548+XQueryErrorCode XQST0012( "err:XQST0012" );
549+
550+
551+XQueryErrorCode XQST0013( "err:XQST0013" );
552+
553+
554+XQueryErrorCode XQST0022( "err:XQST0022" );
555+
556+
557+XQueryErrorCode XQST0031( "err:XQST0031" );
558+
559+
560+XQueryErrorCode XQST0032( "err:XQST0032" );
561+
562+
563+XQueryErrorCode XQST0033( "err:XQST0033" );
564+
565+
566+XQueryErrorCode XQST0034( "err:XQST0034" );
567+
568+
569+XQueryErrorCode XQST0035( "err:XQST0035" );
570+
571+
572+XQueryErrorCode XQST0036( "err:XQST0036" );
573+
574+
575+XQueryErrorCode XQST0038( "err:XQST0038" );
576+
577+
578+XQueryErrorCode XQST0039( "err:XQST0039" );
579+
580+
581+XQueryErrorCode XQST0040( "err:XQST0040" );
582+
583+
584+XQueryErrorCode XQST0045( "err:XQST0045" );
585+
586+
587+XQueryErrorCode XQST0046( "err:XQST0046" );
588+
589+
590+XQueryErrorCode XQST0047( "err:XQST0047" );
591+
592+
593+XQueryErrorCode XQST0048( "err:XQST0048" );
594+
595+
596+XQueryErrorCode XQST0049( "err:XQST0049" );
597+
598+
599+XQueryErrorCode XQST0052( "err:XQST0052" );
600+
601+
602+XQueryErrorCode XQST0054( "err:XQST0054" );
603+
604+
605+XQueryErrorCode XQST0055( "err:XQST0055" );
606+
607+
608+XQueryErrorCode XQST0057( "err:XQST0057" );
609+
610+
611+XQueryErrorCode XQST0058( "err:XQST0058" );
612+
613+
614+XQueryErrorCode XQST0059( "err:XQST0059" );
615+
616+
617+XQueryErrorCode XQST0060( "err:XQST0060" );
618+
619+
620+XQueryErrorCode XQST0065( "err:XQST0065" );
621+
622+
623+XQueryErrorCode XQST0066( "err:XQST0066" );
624+
625+
626+XQueryErrorCode XQST0067( "err:XQST0067" );
627+
628+
629+XQueryErrorCode XQST0068( "err:XQST0068" );
630+
631+
632+XQueryErrorCode XQST0069( "err:XQST0069" );
633+
634+
635+XQueryErrorCode XQST0070( "err:XQST0070" );
636+
637+
638+XQueryErrorCode XQST0071( "err:XQST0071" );
639+
640+
641+XQueryErrorCode XQST0076( "err:XQST0076" );
642+
643+
644+XQueryErrorCode XQST0079( "err:XQST0079" );
645+
646+
647+XQueryErrorCode XQST0085( "err:XQST0085" );
648+
649+
650+XQueryErrorCode XQST0087( "err:XQST0087" );
651+
652+
653+XQueryErrorCode XQST0088( "err:XQST0088" );
654+
655+
656+XQueryErrorCode XQST0089( "err:XQST0089" );
657+
658+
659+XQueryErrorCode XQST0090( "err:XQST0090" );
660+
661+
662+XQueryErrorCode XQST0093( "err:XQST0093" );
663+
664+
665+XQueryErrorCode XQST0094( "err:XQST0094" );
666+
667+
668+XQueryErrorCode XQST0097( "err:XQST0097" );
669+
670+
671+XQueryErrorCode XQST0098( "err:XQST0098" );
672+
673+
674+XQueryErrorCode XQST0099( "err:XQST0099" );
675+
676+
677+XQueryErrorCode XQST0103( "err:XQST0103" );
678+
679+
680+XQueryErrorCode XQST0106( "err:XQST0106" );
681+
682+
683+XQueryErrorCode XQST0111( "err:XQST0111" );
684+
685+
686+XQueryErrorCode XQST0113( "err:XQST0113" );
687+
688+
689+XQueryErrorCode XQST0114( "err:XQST0114" );
690+
691+
692+XQueryErrorCode XQST0116( "err:XQST0116" );
693+
694+
695+XQueryErrorCode XQST0120( "err:XQST0120" );
696+
697+
698+XQueryErrorCode XQST0122( "err:XQST0122" );
699+
700+
701+XQueryErrorCode XQST0123( "err:XQST0123" );
702+
703+
704+XQueryErrorCode XQST0126( "err:XQST0126" );
705+
706+
707+XQueryErrorCode XQST0127( "err:XQST0127" );
708+
709+
710+XQueryErrorCode XQST0128( "err:XQST0128" );
711+
712+
713+XQueryErrorCode XPDY0002( "err:XPDY0002" );
714+
715+
716+XQueryErrorCode XPDY0050( "err:XPDY0050" );
717+
718+
719+XQueryErrorCode XQDY0025( "err:XQDY0025" );
720+
721+
722+XQueryErrorCode XQDY0026( "err:XQDY0026" );
723+
724+
725+XQueryErrorCode XQDY0027( "err:XQDY0027" );
726+
727+
728+XQueryErrorCode XQDY0041( "err:XQDY0041" );
729+
730+
731+XQueryErrorCode XQDY0044( "err:XQDY0044" );
732+
733+
734+XQueryErrorCode XQDY0054( "err:XQDY0054" );
735+
736+
737+XQueryErrorCode XQDY0061( "err:XQDY0061" );
738+
739+
740+XQueryErrorCode XQDY0064( "err:XQDY0064" );
741+
742+
743+XQueryErrorCode XQDY0072( "err:XQDY0072" );
744+
745+
746+XQueryErrorCode XQDY0074( "err:XQDY0074" );
747+
748+
749+XQueryErrorCode XQDY0084( "err:XQDY0084" );
750+
751+
752+XQueryErrorCode XQDY0091( "err:XQDY0091" );
753+
754+
755+XQueryErrorCode XQDY0092( "err:XQDY0092" );
756+
757+
758+XQueryErrorCode XQDY0096( "err:XQDY0096" );
759+
760+
761+XQueryErrorCode XQDY0101( "err:XQDY0101" );
762+
763+
764+XQueryErrorCode XQDY0102( "err:XQDY0102" );
765+
766+
767+XQueryErrorCode XTDE1310( "err:XTDE1310" );
768+
769+
770+XQueryErrorCode FOFD1340( "err:FOFD1340" );
771+
772+
773+XQueryErrorCode FOFD1350( "err:FOFD1350" );
774
775
776 #if !defined(ZORBA_NO_FULL_TEXT)
777-XQueryErrorCode FTST0008( "FTST0008" );
778-
779-
780-XQueryErrorCode FTST0009( "FTST0009" );
781-
782-
783-XQueryErrorCode FTDY0016( "FTDY0016" );
784-
785-
786-XQueryErrorCode FTDY0017( "FTDY0017" );
787-
788-
789-XQueryErrorCode FTST0018( "FTST0018" );
790-
791-
792-XQueryErrorCode FTST0019( "FTST0019" );
793-
794-
795-XQueryErrorCode FTDY0020( "FTDY0020" );
796+XQueryErrorCode FTST0008( "err:FTST0008" );
797+
798+
799+XQueryErrorCode FTST0009( "err:FTST0009" );
800+
801+
802+XQueryErrorCode FTDY0016( "err:FTDY0016" );
803+
804+
805+XQueryErrorCode FTDY0017( "err:FTDY0017" );
806+
807+
808+XQueryErrorCode FTST0018( "err:FTST0018" );
809+
810+
811+XQueryErrorCode FTST0019( "err:FTST0019" );
812+
813+
814+XQueryErrorCode FTDY0020( "err:FTDY0020" );
815 #endif
816
817
818-XQueryErrorCode FOER0000( "FOER0000" );
819-
820-
821-XQueryErrorCode FOAR0001( "FOAR0001" );
822-
823-
824-XQueryErrorCode FOAR0002( "FOAR0002" );
825-
826-
827-XQueryErrorCode FOCA0001( "FOCA0001" );
828-
829-
830-XQueryErrorCode FOCA0002( "FOCA0002" );
831-
832-
833-XQueryErrorCode FOCA0003( "FOCA0003" );
834-
835-
836-XQueryErrorCode FOCA0005( "FOCA0005" );
837-
838-
839-XQueryErrorCode FOCA0006( "FOCA0006" );
840-
841-
842-XQueryErrorCode FOCH0001( "FOCH0001" );
843-
844-
845-XQueryErrorCode FOCH0002( "FOCH0002" );
846-
847-
848-XQueryErrorCode FOCH0003( "FOCH0003" );
849-
850-
851-XQueryErrorCode FOCH0004( "FOCH0004" );
852-
853-
854-XQueryErrorCode FODC0001( "FODC0001" );
855-
856-
857-XQueryErrorCode FODC0002( "FODC0002" );
858-
859-
860-XQueryErrorCode FODC0003( "FODC0003" );
861-
862-
863-XQueryErrorCode FODC0004( "FODC0004" );
864-
865-
866-XQueryErrorCode FODC0005( "FODC0005" );
867-
868-
869-XQueryErrorCode FODC0006( "FODC0006" );
870-
871-
872-XQueryErrorCode FODC0007( "FODC0007" );
873-
874-
875-XQueryErrorCode FODF1280( "FODF1280" );
876-
877-
878-XQueryErrorCode FODF1310( "FODF1310" );
879-
880-
881-XQueryErrorCode FODT0001( "FODT0001" );
882-
883-
884-XQueryErrorCode FODT0002( "FODT0002" );
885-
886-
887-XQueryErrorCode FODT0003( "FODT0003" );
888-
889-
890-XQueryErrorCode FONS0004( "FONS0004" );
891-
892-
893-XQueryErrorCode FONS0005( "FONS0005" );
894-
895-
896-XQueryErrorCode FORG0001( "FORG0001" );
897-
898-
899-XQueryErrorCode FORG0002( "FORG0002" );
900-
901-
902-XQueryErrorCode FORG0003( "FORG0003" );
903-
904-
905-XQueryErrorCode FORG0004( "FORG0004" );
906-
907-
908-XQueryErrorCode FORG0005( "FORG0005" );
909-
910-
911-XQueryErrorCode FORG0006( "FORG0006" );
912-
913-
914-XQueryErrorCode FORG0008( "FORG0008" );
915-
916-
917-XQueryErrorCode FORG0009( "FORG0009" );
918-
919-
920-XQueryErrorCode FORX0001( "FORX0001" );
921-
922-
923-XQueryErrorCode FORX0002( "FORX0002" );
924-
925-
926-XQueryErrorCode FORX0003( "FORX0003" );
927-
928-
929-XQueryErrorCode FORX0004( "FORX0004" );
930-
931-
932-XQueryErrorCode FOTY0012( "FOTY0012" );
933-
934-
935-XQueryErrorCode FOTY0013( "FOTY0013" );
936-
937-
938-XQueryErrorCode FOTY0014( "FOTY0014" );
939-
940-
941-XQueryErrorCode FOTY0015( "FOTY0015" );
942-
943-
944-XQueryErrorCode FOUT1170( "FOUT1170" );
945-
946-
947-XQueryErrorCode FOUT1190( "FOUT1190" );
948-
949-
950-XQueryErrorCode FOFL0001( "FOFL0001" );
951-
952-
953-XQueryErrorCode FOCZ0001( "FOCZ0001" );
954-
955-
956-XQueryErrorCode XUST0001( "XUST0001" );
957-
958-
959-XQueryErrorCode XUST0002( "XUST0002" );
960-
961-
962-XQueryErrorCode XUST0003( "XUST0003" );
963-
964-
965-XQueryErrorCode XUTY0004( "XUTY0004" );
966-
967-
968-XQueryErrorCode XUTY0005( "XUTY0005" );
969-
970-
971-XQueryErrorCode XUTY0006( "XUTY0006" );
972-
973-
974-XQueryErrorCode XUTY0007( "XUTY0007" );
975-
976-
977-XQueryErrorCode XUTY0008( "XUTY0008" );
978-
979-
980-XQueryErrorCode XUDY0009( "XUDY0009" );
981-
982-
983-XQueryErrorCode XUTY0010( "XUTY0010" );
984-
985-
986-XQueryErrorCode XUTY0011( "XUTY0011" );
987-
988-
989-XQueryErrorCode XUTY0012( "XUTY0012" );
990-
991-
992-XQueryErrorCode XUTY0013( "XUTY0013" );
993-
994-
995-XQueryErrorCode XUDY0014( "XUDY0014" );
996-
997-
998-XQueryErrorCode XUDY0015( "XUDY0015" );
999-
1000-
1001-XQueryErrorCode XUDY0016( "XUDY0016" );
1002-
1003-
1004-XQueryErrorCode XUDY0017( "XUDY0017" );
1005-
1006-
1007-XQueryErrorCode XUDY0018( "XUDY0018" );
1008-
1009-
1010-XQueryErrorCode XUDY0019( "XUDY0019" );
1011-
1012-
1013-XQueryErrorCode XUDY0021( "XUDY0021" );
1014-
1015-
1016-XQueryErrorCode XUTY0022( "XUTY0022" );
1017-
1018-
1019-XQueryErrorCode XUDY0023( "XUDY0023" );
1020-
1021-
1022-XQueryErrorCode XUDY0024( "XUDY0024" );
1023-
1024-
1025-XQueryErrorCode XUDY0027( "XUDY0027" );
1026-
1027-
1028-XQueryErrorCode XUST0028( "XUST0028" );
1029-
1030-
1031-XQueryErrorCode XUDY0029( "XUDY0029" );
1032-
1033-
1034-XQueryErrorCode XUDY0030( "XUDY0030" );
1035-
1036-
1037-XQueryErrorCode XUDY0031( "XUDY0031" );
1038-
1039-
1040-XQueryErrorCode FOUP0001( "FOUP0001" );
1041-
1042-
1043-XQueryErrorCode FOUP0002( "FOUP0002" );
1044-
1045-
1046-XQueryErrorCode SENR0001( "SENR0001" );
1047-
1048-
1049-XQueryErrorCode SERE0003( "SERE0003" );
1050-
1051-
1052-XQueryErrorCode SEPM0004( "SEPM0004" );
1053-
1054-
1055-XQueryErrorCode SERE0005( "SERE0005" );
1056-
1057-
1058-XQueryErrorCode SERE0006( "SERE0006" );
1059-
1060-
1061-XQueryErrorCode SESU0007( "SESU0007" );
1062-
1063-
1064-XQueryErrorCode SERE0008( "SERE0008" );
1065-
1066-
1067-XQueryErrorCode SEPM0009( "SEPM0009" );
1068-
1069-
1070-XQueryErrorCode SEPM0010( "SEPM0010" );
1071-
1072-
1073-XQueryErrorCode SESU0011( "SESU0011" );
1074-
1075-
1076-XQueryErrorCode SERE0012( "SERE0012" );
1077-
1078-
1079-XQueryErrorCode SESU0013( "SESU0013" );
1080-
1081-
1082-XQueryErrorCode SERE0014( "SERE0014" );
1083-
1084-
1085-XQueryErrorCode SERE0015( "SERE0015" );
1086-
1087-
1088-XQueryErrorCode SEPM0016( "SEPM0016" );
1089+XQueryErrorCode FOER0000( "err:FOER0000" );
1090+
1091+
1092+XQueryErrorCode FOAR0001( "err:FOAR0001" );
1093+
1094+
1095+XQueryErrorCode FOAR0002( "err:FOAR0002" );
1096+
1097+
1098+XQueryErrorCode FOCA0001( "err:FOCA0001" );
1099+
1100+
1101+XQueryErrorCode FOCA0002( "err:FOCA0002" );
1102+
1103+
1104+XQueryErrorCode FOCA0003( "err:FOCA0003" );
1105+
1106+
1107+XQueryErrorCode FOCA0005( "err:FOCA0005" );
1108+
1109+
1110+XQueryErrorCode FOCA0006( "err:FOCA0006" );
1111+
1112+
1113+XQueryErrorCode FOCH0001( "err:FOCH0001" );
1114+
1115+
1116+XQueryErrorCode FOCH0002( "err:FOCH0002" );
1117+
1118+
1119+XQueryErrorCode FOCH0003( "err:FOCH0003" );
1120+
1121+
1122+XQueryErrorCode FOCH0004( "err:FOCH0004" );
1123+
1124+
1125+XQueryErrorCode FODC0001( "err:FODC0001" );
1126+
1127+
1128+XQueryErrorCode FODC0002( "err:FODC0002" );
1129+
1130+
1131+XQueryErrorCode FODC0003( "err:FODC0003" );
1132+
1133+
1134+XQueryErrorCode FODC0004( "err:FODC0004" );
1135+
1136+
1137+XQueryErrorCode FODC0005( "err:FODC0005" );
1138+
1139+
1140+XQueryErrorCode FODC0006( "err:FODC0006" );
1141+
1142+
1143+XQueryErrorCode FODC0007( "err:FODC0007" );
1144+
1145+
1146+XQueryErrorCode FODF1280( "err:FODF1280" );
1147+
1148+
1149+XQueryErrorCode FODF1310( "err:FODF1310" );
1150+
1151+
1152+XQueryErrorCode FODT0001( "err:FODT0001" );
1153+
1154+
1155+XQueryErrorCode FODT0002( "err:FODT0002" );
1156+
1157+
1158+XQueryErrorCode FODT0003( "err:FODT0003" );
1159+
1160+
1161+XQueryErrorCode FONS0004( "err:FONS0004" );
1162+
1163+
1164+XQueryErrorCode FONS0005( "err:FONS0005" );
1165+
1166+
1167+XQueryErrorCode FORG0001( "err:FORG0001" );
1168+
1169+
1170+XQueryErrorCode FORG0002( "err:FORG0002" );
1171+
1172+
1173+XQueryErrorCode FORG0003( "err:FORG0003" );
1174+
1175+
1176+XQueryErrorCode FORG0004( "err:FORG0004" );
1177+
1178+
1179+XQueryErrorCode FORG0005( "err:FORG0005" );
1180+
1181+
1182+XQueryErrorCode FORG0006( "err:FORG0006" );
1183+
1184+
1185+XQueryErrorCode FORG0008( "err:FORG0008" );
1186+
1187+
1188+XQueryErrorCode FORG0009( "err:FORG0009" );
1189+
1190+
1191+XQueryErrorCode FORX0001( "err:FORX0001" );
1192+
1193+
1194+XQueryErrorCode FORX0002( "err:FORX0002" );
1195+
1196+
1197+XQueryErrorCode FORX0003( "err:FORX0003" );
1198+
1199+
1200+XQueryErrorCode FORX0004( "err:FORX0004" );
1201+
1202+
1203+XQueryErrorCode FOTY0012( "err:FOTY0012" );
1204+
1205+
1206+XQueryErrorCode FOTY0013( "err:FOTY0013" );
1207+
1208+
1209+XQueryErrorCode FOTY0014( "err:FOTY0014" );
1210+
1211+
1212+XQueryErrorCode FOTY0015( "err:FOTY0015" );
1213+
1214+
1215+XQueryErrorCode FOUT1170( "err:FOUT1170" );
1216+
1217+
1218+XQueryErrorCode FOUT1190( "err:FOUT1190" );
1219+
1220+
1221+XQueryErrorCode FOFL0001( "err:FOFL0001" );
1222+
1223+
1224+XQueryErrorCode FOCZ0001( "err:FOCZ0001" );
1225+
1226+
1227+XQueryErrorCode XUST0001( "err:XUST0001" );
1228+
1229+
1230+XQueryErrorCode XUST0002( "err:XUST0002" );
1231+
1232+
1233+XQueryErrorCode XUST0003( "err:XUST0003" );
1234+
1235+
1236+XQueryErrorCode XUTY0004( "err:XUTY0004" );
1237+
1238+
1239+XQueryErrorCode XUTY0005( "err:XUTY0005" );
1240+
1241+
1242+XQueryErrorCode XUTY0006( "err:XUTY0006" );
1243+
1244+
1245+XQueryErrorCode XUTY0007( "err:XUTY0007" );
1246+
1247+
1248+XQueryErrorCode XUTY0008( "err:XUTY0008" );
1249+
1250+
1251+XQueryErrorCode XUDY0009( "err:XUDY0009" );
1252+
1253+
1254+XQueryErrorCode XUTY0010( "err:XUTY0010" );
1255+
1256+
1257+XQueryErrorCode XUTY0011( "err:XUTY0011" );
1258+
1259+
1260+XQueryErrorCode XUTY0012( "err:XUTY0012" );
1261+
1262+
1263+XQueryErrorCode XUTY0013( "err:XUTY0013" );
1264+
1265+
1266+XQueryErrorCode XUDY0014( "err:XUDY0014" );
1267+
1268+
1269+XQueryErrorCode XUDY0015( "err:XUDY0015" );
1270+
1271+
1272+XQueryErrorCode XUDY0016( "err:XUDY0016" );
1273+
1274+
1275+XQueryErrorCode XUDY0017( "err:XUDY0017" );
1276+
1277+
1278+XQueryErrorCode XUDY0018( "err:XUDY0018" );
1279+
1280+
1281+XQueryErrorCode XUDY0019( "err:XUDY0019" );
1282+
1283+
1284+XQueryErrorCode XUDY0021( "err:XUDY0021" );
1285+
1286+
1287+XQueryErrorCode XUTY0022( "err:XUTY0022" );
1288+
1289+
1290+XQueryErrorCode XUDY0023( "err:XUDY0023" );
1291+
1292+
1293+XQueryErrorCode XUDY0024( "err:XUDY0024" );
1294+
1295+
1296+XQueryErrorCode XUDY0027( "err:XUDY0027" );
1297+
1298+
1299+XQueryErrorCode XUST0028( "err:XUST0028" );
1300+
1301+
1302+XQueryErrorCode XUDY0029( "err:XUDY0029" );
1303+
1304+
1305+XQueryErrorCode XUDY0030( "err:XUDY0030" );
1306+
1307+
1308+XQueryErrorCode XUDY0031( "err:XUDY0031" );
1309+
1310+
1311+XQueryErrorCode FOUP0001( "err:FOUP0001" );
1312+
1313+
1314+XQueryErrorCode FOUP0002( "err:FOUP0002" );
1315+
1316+
1317+XQueryErrorCode SENR0001( "err:SENR0001" );
1318+
1319+
1320+XQueryErrorCode SERE0003( "err:SERE0003" );
1321+
1322+
1323+XQueryErrorCode SEPM0004( "err:SEPM0004" );
1324+
1325+
1326+XQueryErrorCode SERE0005( "err:SERE0005" );
1327+
1328+
1329+XQueryErrorCode SERE0006( "err:SERE0006" );
1330+
1331+
1332+XQueryErrorCode SESU0007( "err:SESU0007" );
1333+
1334+
1335+XQueryErrorCode SERE0008( "err:SERE0008" );
1336+
1337+
1338+XQueryErrorCode SEPM0009( "err:SEPM0009" );
1339+
1340+
1341+XQueryErrorCode SEPM0010( "err:SEPM0010" );
1342+
1343+
1344+XQueryErrorCode SESU0011( "err:SESU0011" );
1345+
1346+
1347+XQueryErrorCode SERE0012( "err:SERE0012" );
1348+
1349+
1350+XQueryErrorCode SESU0013( "err:SESU0013" );
1351+
1352+
1353+XQueryErrorCode SERE0014( "err:SERE0014" );
1354+
1355+
1356+XQueryErrorCode SERE0015( "err:SERE0015" );
1357+
1358+
1359+XQueryErrorCode SEPM0016( "err:SEPM0016" );
1360
1361
1362 } // namespace err
1363
1364 namespace zerr {
1365
1366-ZorbaErrorCode ZXQP0000_NO_ERROR( "ZXQP0000" );
1367-
1368-
1369-ZorbaErrorCode ZXQP0001_DYNAMIC_RUNTIME_ERROR( "ZXQP0001" );
1370-
1371-
1372-ZorbaErrorCode ZXQP0002_ASSERT_FAILED( "ZXQP0002" );
1373-
1374-
1375-ZorbaErrorCode ZXQP0003_INTERNAL_ERROR( "ZXQP0003" );
1376-
1377-
1378-ZorbaErrorCode ZXQP0004_NOT_IMPLEMENTED( "ZXQP0004" );
1379-
1380-
1381-ZorbaErrorCode ZXQP0005_NOT_ENABLED( "ZXQP0005" );
1382-
1383-
1384-ZorbaErrorCode ZXQP0006_UNKNOWN_ENCODING( "ZXQP0006" );
1385-
1386-
1387-ZorbaErrorCode ZXQP0007_FUNCTION_SIGNATURE_NOT_EQUAL( "ZXQP0007" );
1388-
1389-
1390-ZorbaErrorCode ZXQP0008_FUNCTION_IMPL_NOT_FOUND( "ZXQP0008" );
1391-
1392-
1393-ZorbaErrorCode ZXQP0009_FUNCTION_LOCALNAME_MISMATCH( "ZXQP0009" );
1394-
1395-
1396-ZorbaErrorCode ZXQP0010_FUNCTION_NOT_SEQUENTIAL( "ZXQP0010" );
1397-
1398-
1399-ZorbaErrorCode ZXQP0011_INVALID_LOCALE( "ZXQP0011" );
1400-
1401-
1402-ZorbaErrorCode ZXQP0012_UNKNOWN_LOCALE( "ZXQP0012" );
1403-
1404-
1405-ZorbaErrorCode ZXQP0013_FXCHARHEAP_EXCEPTION( "ZXQP0013" );
1406-
1407-
1408-ZorbaErrorCode ZXQP0014_OUT_OF_MEMORY( "ZXQP0014" );
1409-
1410-
1411-ZorbaErrorCode ZXQP0016_RESERVED_MODULE_TARGET_NAMESPACE( "ZXQP0016" );
1412-
1413-
1414-ZorbaErrorCode ZXQP0017_FILE_ACCESS_DISABLED( "ZXQP0017" );
1415-
1416-
1417-ZorbaErrorCode ZXQP0020_INVALID_URI( "ZXQP0020" );
1418-
1419-
1420-ZorbaErrorCode ZXQP0021_USER_ERROR( "ZXQP0021" );
1421-
1422-
1423-ZorbaErrorCode ZXQP0024_XML_DOES_NOT_MATCH_SCHEMA( "ZXQP0024" );
1424-
1425-
1426-ZorbaErrorCode ZXQP0025_COULD_NOT_FETCH_RESOURCE( "ZXQP0025" );
1427-
1428-
1429-ZorbaErrorCode ZXQP0026_INVALID_ENUM_VALUE( "ZXQP0026" );
1430-
1431-
1432-ZorbaErrorCode ZXQP0028_TARGET_NAMESPACE_NOT_PROVIDED( "ZXQP0028" );
1433-
1434-
1435-ZorbaErrorCode ZXQP0029_URI_ACCESS_DENIED( "ZXQP0029" );
1436-
1437-
1438-ZorbaErrorCode ZXQP0030_DEADLOCK( "ZXQP0030" );
1439-
1440-
1441-ZorbaErrorCode ZXQP0031_MALFORMED_XQUERYX_INPUT( "ZXQP0031" );
1442-
1443-
1444-ZorbaErrorCode ZXQP0032_ERROR_TRANSFORMING_XQUERYX_TO_XQUERY( "ZXQP0032" );
1445-
1446-
1447-ZorbaErrorCode ZXQP0033_SCHEMA_XML_ERROR( "ZXQP0033" );
1448-
1449-
1450-ZorbaErrorCode ZXQP0035_SCHEMA_UNEXPECTED_ERROR( "ZXQP0035" );
1451-
1452-
1453-ZorbaErrorCode ZXQP0036_BREAKITERATOR_CREATION_FAILED( "ZXQP0036" );
1454-
1455-
1456-ZorbaErrorCode ZXQP0037_INAPPROPRIATE_MODULE_VERSION( "ZXQP0037" );
1457-
1458-
1459-ZorbaErrorCode ZXQP0038_INAPPROPRIATE_ZORBA_VERSION( "ZXQP0038" );
1460-
1461-
1462-ZorbaErrorCode ZXQP0039_INVALID_VERSION_SPECIFICATION( "ZXQP0039" );
1463-
1464-
1465-ZorbaErrorCode ZXQP0040_MISSING_NONDETERMINISTIC_ANNOTATION( "ZXQP0040" );
1466-
1467-
1468-ZorbaErrorCode ZXQP0050_FEATURE_NOT_AVAILABLE( "ZXQP0050" );
1469-
1470-
1471-ZorbaErrorCode ZXQP0060_OPTION_NOT_KNOWN( "ZXQP0060" );
1472-
1473-
1474-ZorbaErrorCode ZXQP0061_DISABLE_HTTP_OPTION_IN_QUERY( "ZXQP0061" );
1475+ZorbaErrorCode ZXQP0000_NO_ERROR( "zerr:ZXQP0000" );
1476+
1477+
1478+ZorbaErrorCode ZXQP0001_DYNAMIC_RUNTIME_ERROR( "zerr:ZXQP0001" );
1479+
1480+
1481+ZorbaErrorCode ZXQP0002_ASSERT_FAILED( "zerr:ZXQP0002" );
1482+
1483+
1484+ZorbaErrorCode ZXQP0003_INTERNAL_ERROR( "zerr:ZXQP0003" );
1485+
1486+
1487+ZorbaErrorCode ZXQP0004_NOT_IMPLEMENTED( "zerr:ZXQP0004" );
1488+
1489+
1490+ZorbaErrorCode ZXQP0005_NOT_ENABLED( "zerr:ZXQP0005" );
1491+
1492+
1493+ZorbaErrorCode ZXQP0006_UNKNOWN_ENCODING( "zerr:ZXQP0006" );
1494+
1495+
1496+ZorbaErrorCode ZXQP0007_FUNCTION_SIGNATURE_NOT_EQUAL( "zerr:ZXQP0007" );
1497+
1498+
1499+ZorbaErrorCode ZXQP0008_FUNCTION_IMPL_NOT_FOUND( "zerr:ZXQP0008" );
1500+
1501+
1502+ZorbaErrorCode ZXQP0009_FUNCTION_LOCALNAME_MISMATCH( "zerr:ZXQP0009" );
1503+
1504+
1505+ZorbaErrorCode ZXQP0010_FUNCTION_NOT_SEQUENTIAL( "zerr:ZXQP0010" );
1506+
1507+
1508+ZorbaErrorCode ZXQP0011_INVALID_LOCALE( "zerr:ZXQP0011" );
1509+
1510+
1511+ZorbaErrorCode ZXQP0012_UNKNOWN_LOCALE( "zerr:ZXQP0012" );
1512+
1513+
1514+ZorbaErrorCode ZXQP0013_FXCHARHEAP_EXCEPTION( "zerr:ZXQP0013" );
1515+
1516+
1517+ZorbaErrorCode ZXQP0014_OUT_OF_MEMORY( "zerr:ZXQP0014" );
1518+
1519+
1520+ZorbaErrorCode ZXQP0016_RESERVED_MODULE_TARGET_NAMESPACE( "zerr:ZXQP0016" );
1521+
1522+
1523+ZorbaErrorCode ZXQP0017_FILE_ACCESS_DISABLED( "zerr:ZXQP0017" );
1524+
1525+
1526+ZorbaErrorCode ZXQP0020_INVALID_URI( "zerr:ZXQP0020" );
1527+
1528+
1529+ZorbaErrorCode ZXQP0021_USER_ERROR( "zerr:ZXQP0021" );
1530+
1531+
1532+ZorbaErrorCode ZXQP0024_XML_DOES_NOT_MATCH_SCHEMA( "zerr:ZXQP0024" );
1533+
1534+
1535+ZorbaErrorCode ZXQP0025_COULD_NOT_FETCH_RESOURCE( "zerr:ZXQP0025" );
1536+
1537+
1538+ZorbaErrorCode ZXQP0026_INVALID_ENUM_VALUE( "zerr:ZXQP0026" );
1539+
1540+
1541+ZorbaErrorCode ZXQP0028_TARGET_NAMESPACE_NOT_PROVIDED( "zerr:ZXQP0028" );
1542+
1543+
1544+ZorbaErrorCode ZXQP0029_URI_ACCESS_DENIED( "zerr:ZXQP0029" );
1545+
1546+
1547+ZorbaErrorCode ZXQP0030_DEADLOCK( "zerr:ZXQP0030" );
1548+
1549+
1550+ZorbaErrorCode ZXQP0031_MALFORMED_XQUERYX_INPUT( "zerr:ZXQP0031" );
1551+
1552+
1553+ZorbaErrorCode ZXQP0032_ERROR_TRANSFORMING_XQUERYX_TO_XQUERY( "zerr:ZXQP0032" );
1554+
1555+
1556+ZorbaErrorCode ZXQP0033_SCHEMA_XML_ERROR( "zerr:ZXQP0033" );
1557+
1558+
1559+ZorbaErrorCode ZXQP0035_SCHEMA_UNEXPECTED_ERROR( "zerr:ZXQP0035" );
1560+
1561+
1562+ZorbaErrorCode ZXQP0036_BREAKITERATOR_CREATION_FAILED( "zerr:ZXQP0036" );
1563+
1564+
1565+ZorbaErrorCode ZXQP0037_INAPPROPRIATE_MODULE_VERSION( "zerr:ZXQP0037" );
1566+
1567+
1568+ZorbaErrorCode ZXQP0038_INAPPROPRIATE_ZORBA_VERSION( "zerr:ZXQP0038" );
1569+
1570+
1571+ZorbaErrorCode ZXQP0039_INVALID_VERSION_SPECIFICATION( "zerr:ZXQP0039" );
1572+
1573+
1574+ZorbaErrorCode ZXQP0040_MISSING_NONDETERMINISTIC_ANNOTATION( "zerr:ZXQP0040" );
1575+
1576+
1577+ZorbaErrorCode ZXQP0050_FEATURE_NOT_AVAILABLE( "zerr:ZXQP0050" );
1578+
1579+
1580+ZorbaErrorCode ZXQP0060_OPTION_NOT_KNOWN( "zerr:ZXQP0060" );
1581+
1582+
1583+ZorbaErrorCode ZXQP0061_DISABLE_HTTP_OPTION_IN_QUERY( "zerr:ZXQP0061" );
1584
1585
1586 #if !defined(ZORBA_NO_FULL_TEXT)
1587-ZorbaErrorCode ZXQP8401_THESAURUS_VERSION_MISMATCH( "ZXQP8401" );
1588-
1589-
1590-ZorbaErrorCode ZXQP8402_THESAURUS_ENDIANNESS_MISMATCH( "ZXQP8402" );
1591-
1592-
1593-ZorbaErrorCode ZXQP8403_THESAURUS_DATA_ERROR( "ZXQP8403" );
1594+ZorbaErrorCode ZXQP8401_THESAURUS_VERSION_MISMATCH( "zerr:ZXQP8401" );
1595+
1596+
1597+ZorbaErrorCode ZXQP8402_THESAURUS_ENDIANNESS_MISMATCH( "zerr:ZXQP8402" );
1598+
1599+
1600+ZorbaErrorCode ZXQP8403_THESAURUS_DATA_ERROR( "zerr:ZXQP8403" );
1601 #endif
1602
1603
1604-ZorbaErrorCode ZXQD0001_PREFIX_NOT_DECLARED( "ZXQD0001" );
1605-
1606-
1607-ZorbaErrorCode ZXQD0002_DOCUMENT_NOT_VALID( "ZXQD0002" );
1608-
1609-
1610-ZorbaErrorCode ZXQD0003_INCONSISTENT_PARSE_FRAGMENT_OPTIONS( "ZXQD0003" );
1611-
1612-
1613-ZorbaErrorCode ZXQD0004_INVALID_PARAMETER( "ZXQD0004" );
1614-
1615-
1616-ZorbaErrorCode ZXQD0005_INVALID_KEY_FOR_MAP( "ZXQD0005" );
1617-
1618-
1619-ZorbaErrorCode ZXQD0006_INVALID_UTF8_BYTE_SEQUENCE( "ZXQD0006" );
1620-
1621-
1622-ZorbaErrorCode ZAPI0002_XQUERY_COMPILATION_FAILED( "ZAPI0002" );
1623-
1624-
1625-ZorbaErrorCode ZAPI0003_XQUERY_NOT_COMPILED( "ZAPI0003" );
1626-
1627-
1628-ZorbaErrorCode ZAPI0004_XQUERY_ALREADY_COMPILED( "ZAPI0004" );
1629-
1630-
1631-ZorbaErrorCode ZAPI0005_XQUERY_ALREADY_EXECUTING( "ZAPI0005" );
1632-
1633-
1634-ZorbaErrorCode ZAPI0006_XQUERY_ALREADY_CLOSED( "ZAPI0006" );
1635-
1636-
1637-ZorbaErrorCode ZAPI0007_CANNOT_SERIALIZE_PUL( "ZAPI0007" );
1638-
1639-
1640-ZorbaErrorCode ZAPI0008_NOT_AN_UPDATE_XQUERY( "ZAPI0008" );
1641-
1642-
1643-ZorbaErrorCode ZAPI0009_XQUERY_NOT_COMPILED_IN_DEBUG_MODE( "ZAPI0009" );
1644-
1645-
1646-ZorbaErrorCode ZAPI0011_VARIABLE_NOT_DECLARED( "ZAPI0011" );
1647-
1648-
1649-ZorbaErrorCode ZAPI0014_INVALID_ARGUMENT( "ZAPI0014" );
1650-
1651-
1652-ZorbaErrorCode ZAPI0015_CREATEMODULE_NOT_FOUND( "ZAPI0015" );
1653-
1654-
1655-ZorbaErrorCode ZAPI0019_MODULE_ALREADY_REGISTERED( "ZAPI0019" );
1656-
1657-
1658-ZorbaErrorCode ZAPI0020_DOCUMENT_ALREADY_EXISTS( "ZAPI0020" );
1659-
1660-
1661-ZorbaErrorCode ZAPI0021_ITEM_TO_LOAD_IS_NOT_XML_DOC( "ZAPI0021" );
1662-
1663-
1664-ZorbaErrorCode ZAPI0023_NON_ATOMIC_CONTEXT_SIZE_VALUE( "ZAPI0023" );
1665-
1666-
1667-ZorbaErrorCode ZAPI0024_NON_INTEGER_CONTEXT_SIZE_VALUE( "ZAPI0024" );
1668-
1669-
1670-ZorbaErrorCode ZAPI0025_NON_ATOMIC_CONTEXT_POSITION_VALUE( "ZAPI0025" );
1671-
1672-
1673-ZorbaErrorCode ZAPI0026_NON_INTEGER_CONTEXT_POSITION_VALUE( "ZAPI0026" );
1674-
1675-
1676-ZorbaErrorCode ZAPI0027_CANNOT_UPDATE_DCTX_WITH_ITERATORS( "ZAPI0027" );
1677-
1678-
1679-ZorbaErrorCode ZAPI0028_INVALID_NODE_URI( "ZAPI0028" );
1680-
1681-
1682-ZorbaErrorCode ZAPI0029_REFERENCE_ALREADY_PRESENT( "ZAPI0029" );
1683-
1684-
1685-ZorbaErrorCode ZAPI0030_NO_CURRENT_REFERENCE( "ZAPI0030" );
1686-
1687-
1688-ZorbaErrorCode ZAPI0039_XQUERY_HAS_ITERATOR_ALREADY( "ZAPI0039" );
1689-
1690-
1691-ZorbaErrorCode ZAPI0040_ITERATOR_NOT_OPEN( "ZAPI0040" );
1692-
1693-
1694-ZorbaErrorCode ZAPI0041_ITERATOR_ALREADY_OPEN( "ZAPI0041" );
1695-
1696-
1697-ZorbaErrorCode ZAPI0042_ITERATOR_CLOSED( "ZAPI0042" );
1698-
1699-
1700-ZorbaErrorCode ZAPI0043_CANNOT_SERIALIZE_JSON_ITEM( "ZAPI0043" );
1701-
1702-
1703-ZorbaErrorCode ZAPI0045_CANNOT_SERIALIZE_MIXED_XDM_JDM( "ZAPI0045" );
1704-
1705-
1706-ZorbaErrorCode ZAPI0070_INVALID_SERIALIZATION_METHOD_FOR_SAX( "ZAPI0070" );
1707-
1708-
1709-ZorbaErrorCode ZAPI0080_CANNOT_RETRIEVE_REFERENCE( "ZAPI0080" );
1710-
1711-
1712-ZorbaErrorCode ZAPI0090_CANNOT_VALIDATE_NON_ROOT( "ZAPI0090" );
1713-
1714-
1715-ZorbaErrorCode ZCSE0001_NONEXISTENT_INPUT_FIELD( "ZCSE0001" );
1716-
1717-
1718-ZorbaErrorCode ZCSE0002_INCOMPATIBLE_INPUT_FIELD( "ZCSE0002" );
1719-
1720-
1721-ZorbaErrorCode ZCSE0003_UNRECOGNIZED_CLASS_FIELD( "ZCSE0003" );
1722-
1723-
1724-ZorbaErrorCode ZCSE0004_UNRESOLVED_FIELD_REFERENCE( "ZCSE0004" );
1725-
1726-
1727-ZorbaErrorCode ZCSE0005_CLASS_VERSION_TOO_NEW( "ZCSE0005" );
1728-
1729-
1730-ZorbaErrorCode ZCSE0006_CLASS_VERSION_TOO_OLD( "ZCSE0006" );
1731-
1732-
1733-ZorbaErrorCode ZCSE0007_INPUT_ARCHIVE_USED_FOR_OUT_SERIALIZATION( "ZCSE0007" );
1734-
1735-
1736-ZorbaErrorCode ZCSE0008_OUTPUT_ARCHIVE_USED_FOR_IN_SERIALIZATION( "ZCSE0008" );
1737-
1738-
1739-ZorbaErrorCode ZCSE0009_CLASS_NOT_SERIALIZABLE( "ZCSE0009" );
1740-
1741-
1742-ZorbaErrorCode ZCSE0010_ITEM_TYPE_NOT_SERIALIZABLE( "ZCSE0010" );
1743-
1744-
1745-ZorbaErrorCode ZCSE0011_INPUT_ARCHIVE_NOT_ZORBA_ARCHIVE( "ZCSE0011" );
1746-
1747-
1748-ZorbaErrorCode ZCSE0012_INCOMPATIBLE_ARCHIVE_VERSION( "ZCSE0012" );
1749-
1750-
1751-ZorbaErrorCode ZCSE0013_UNABLE_TO_LOAD_QUERY( "ZCSE0013" );
1752-
1753-
1754-ZorbaErrorCode ZCSE0014_INFINITE_CIRCULAR_DEPENDENCIES( "ZCSE0014" );
1755-
1756-
1757-ZorbaErrorCode ZCSE0015_INCOMPATIBLE_BETWEEN_32_AND_64_BITS_OR_LE_AND_BE( "ZCSE0015" );
1758-
1759-
1760-ZorbaErrorCode ZCSE0016_CANNOT_LOAD_FROM_RELEASE_TO_DEBUG( "ZCSE0016" );
1761-
1762-
1763-ZorbaErrorCode ZCSE0017_CANNOT_LOAD_FROM_DEBUG_TO_RELEASE( "ZCSE0017" );
1764-
1765-
1766-ZorbaErrorCode ZDDY0001_COLLECTION_NOT_DECLARED( "ZDDY0001" );
1767-
1768-
1769-ZorbaErrorCode ZDDY0002_COLLECTION_ALREADY_EXISTS( "ZDDY0002" );
1770-
1771-
1772-ZorbaErrorCode ZDDY0003_COLLECTION_DOES_NOT_EXIST( "ZDDY0003" );
1773-
1774-
1775-ZorbaErrorCode ZDDY0004_COLLECTION_CONST_UPDATE( "ZDDY0004" );
1776-
1777-
1778-ZorbaErrorCode ZDDY0005_COLLECTION_APPEND_BAD_INSERT( "ZDDY0005" );
1779-
1780-
1781-ZorbaErrorCode ZDDY0006_COLLECTION_QUEUE_BAD_INSERT( "ZDDY0006" );
1782-
1783-
1784-ZorbaErrorCode ZDDY0007_COLLECTION_APPEND_BAD_DELETE( "ZDDY0007" );
1785-
1786-
1787-ZorbaErrorCode ZDDY0008_COLLECTION_QUEUE_BAD_DELETE( "ZDDY0008" );
1788-
1789-
1790-ZorbaErrorCode ZDDY0009_COLLECTION_QUEUE_BAD_DELETE( "ZDDY0009" );
1791-
1792-
1793-ZorbaErrorCode ZDDY0010_COLLECTION_CONST_NODE_UPDATE( "ZDDY0010" );
1794-
1795-
1796-ZorbaErrorCode ZDDY0011_COLLECTION_NODE_NOT_FOUND( "ZDDY0011" );
1797-
1798-
1799-ZorbaErrorCode ZDDY0012_COLLECTION_UNORDERED_BAD_OPERATION( "ZDDY0012" );
1800-
1801-
1802-ZorbaErrorCode ZDDY0013_COLLECTION_BAD_DESTROY_INDEXES( "ZDDY0013" );
1803-
1804-
1805-ZorbaErrorCode ZDDY0014_COLLECTION_BAD_DESTROY_ICS( "ZDDY0014" );
1806-
1807-
1808-ZorbaErrorCode ZDDY0015_COLLECTION_BAD_DESTROY_NODES( "ZDDY0015" );
1809-
1810-
1811-ZorbaErrorCode ZDDY0016_COLLECTION_MULTIPLE_CREATES( "ZDDY0016" );
1812-
1813-
1814-ZorbaErrorCode ZDDY0017_NODE_IS_ORPHAN( "ZDDY0017" );
1815-
1816-
1817-ZorbaErrorCode ZDDY0018_NODES_NOT_IN_SAME_COLLECTION( "ZDDY0018" );
1818-
1819-
1820-ZorbaErrorCode ZDDY0020_INDEX_DOMAIN_NODE_NOT_IN_COLLECTION( "ZDDY0020" );
1821-
1822-
1823-ZorbaErrorCode ZDDY0019_COLLECTION_ITERATOR_NOT_OPEN( "ZDDY0019" );
1824-
1825-
1826-ZorbaErrorCode ZDDY0021_INDEX_NOT_DECLARED( "ZDDY0021" );
1827-
1828-
1829-ZorbaErrorCode ZDDY0022_INDEX_ALREADY_EXISTS( "ZDDY0022" );
1830-
1831-
1832-ZorbaErrorCode ZDDY0023_INDEX_DOES_NOT_EXIST( "ZDDY0023" );
1833-
1834-
1835-ZorbaErrorCode ZDDY0024_INDEX_UNIQUE_VIOLATION( "ZDDY0024" );
1836-
1837-
1838-ZorbaErrorCode ZDDY0025_INDEX_WRONG_NUMBER_OF_PROBE_ARGS( "ZDDY0025" );
1839-
1840-
1841-ZorbaErrorCode ZDDY0026_INDEX_RANGE_PROBE_NOT_ALLOWED( "ZDDY0026" );
1842-
1843-
1844-ZorbaErrorCode ZDDY0027_INDEX_MULTIPLE_CREATES( "ZDDY0027" );
1845-
1846-
1847-ZorbaErrorCode ZDDY0028_INDEX_DOMAIN_HAS_DUPLICATE_NODES( "ZDDY0028" );
1848-
1849-
1850-ZorbaErrorCode ZDDY0029_INDEX_POINT_GENERAL_PROBE_NOT_ALLOWED( "ZDDY0029" );
1851-
1852-
1853-ZorbaErrorCode ZDDY0030_INDEX_RANGE_GENERAL_PROBE_NOT_ALLOWED( "ZDDY0030" );
1854-
1855-
1856-ZorbaErrorCode ZDDY0031_IC_NOT_DECLARED( "ZDDY0031" );
1857-
1858-
1859-ZorbaErrorCode ZDDY0032_IC_NOT_ACTIVATED( "ZDDY0032" );
1860-
1861-
1862-ZorbaErrorCode ZDDY0033_IC_NOT_MET( "ZDDY0033" );
1863-
1864-
1865-ZorbaErrorCode ZDDY0034_INDEX_RANGE_VALUE_PROBE_BAD_KEY_TYPES( "ZDDY0034" );
1866-
1867-
1868-ZorbaErrorCode ZDDY0035_INDEX_GENERAL_INSERT( "ZDDY0035" );
1869-
1870-
1871-ZorbaErrorCode ZDDY0036_NON_ROOT_NODE_DELETION( "ZDDY0036" );
1872-
1873-
1874-ZorbaErrorCode ZDDY0037_COLLECTION_APPEND_BAD_EDIT( "ZDDY0037" );
1875-
1876-
1877-ZorbaErrorCode ZDDY0038_COLLECTION_QUEUE_BAD_EDIT( "ZDDY0038" );
1878-
1879-
1880-ZorbaErrorCode ZDDY0039_NON_ROOT_NODE_EDIT( "ZDDY0039" );
1881-
1882-
1883-ZorbaErrorCode ZDDY0040_INCONSISTENT_EDIT( "ZDDY0040" );
1884-
1885-
1886-ZorbaErrorCode ZDDY0041_CONCURRENT_MODIFICATION( "ZDDY0041" );
1887-
1888-
1889-ZorbaErrorCode ZDDY0042_ITEM_NOT_IN_COLLECTION( "ZDDY0042" );
1890-
1891-
1892-ZorbaErrorCode ZDDY0043_INVALID_OPTION_TYPE( "ZDDY0043" );
1893-
1894-
1895-ZorbaErrorCode ZDST0001_COLLECTION_ALREADY_DECLARED( "ZDST0001" );
1896-
1897-
1898-ZorbaErrorCode ZDST0002_COLLECTION_ALREADY_IMPORTED( "ZDST0002" );
1899-
1900-
1901-ZorbaErrorCode ZDST0003_COLLECTION_DECL_IN_MAIN_MODULE( "ZDST0003" );
1902-
1903-
1904-ZorbaErrorCode ZDST0004_COLLECTION_MULTIPLE_PROPERTY_VALUES( "ZDST0004" );
1905-
1906-
1907-ZorbaErrorCode ZDST0006_COLLECTION_INVALID_PROPERTY_VALUE( "ZDST0006" );
1908-
1909-
1910-ZorbaErrorCode ZDST0007_COLLECTION_DECL_IN_FOREIGN_MODULE( "ZDST0007" );
1911-
1912-
1913-ZorbaErrorCode ZDST0021_INDEX_ALREADY_DECLARED( "ZDST0021" );
1914-
1915-
1916-ZorbaErrorCode ZDST0022_INDEX_ALREADY_IMPORTED( "ZDST0022" );
1917-
1918-
1919-ZorbaErrorCode ZDST0023_INDEX_DECL_IN_MAIN_MODULE( "ZDST0023" );
1920-
1921-
1922-ZorbaErrorCode ZDST0024_INDEX_MULTIPLE_PROPERTY_VALUES( "ZDST0024" );
1923-
1924-
1925-ZorbaErrorCode ZDST0025_INDEX_BAD_UNIQUE_PROPERTY( "ZDST0025" );
1926-
1927-
1928-ZorbaErrorCode ZDST0026_INDEX_INVALID_PROPERTY_VALUE( "ZDST0026" );
1929-
1930-
1931-ZorbaErrorCode ZDST0027_INDEX_BAD_KEY_TYPE( "ZDST0027" );
1932-
1933-
1934-ZorbaErrorCode ZDST0028_INDEX_NOT_DETERMINISTIC( "ZDST0028" );
1935-
1936-
1937-ZorbaErrorCode ZDST0029_INDEX_INVALID_DATA_SOURCE( "ZDST0029" );
1938-
1939-
1940-ZorbaErrorCode ZDST0030_INDEX_NON_CONST_DATA_SOURCE( "ZDST0030" );
1941-
1942-
1943-ZorbaErrorCode ZDST0031_INDEX_HAS_FREE_VARS( "ZDST0031" );
1944-
1945-
1946-ZorbaErrorCode ZDST0032_INDEX_REFERENCES_CTX_ITEM( "ZDST0032" );
1947-
1948-
1949-ZorbaErrorCode ZDST0033_INDEX_NON_SIMPLE_EXPR( "ZDST0033" );
1950-
1951-
1952-ZorbaErrorCode ZDST0034_INDEX_CANNOT_DO_AUTOMATIC_MAINTENANCE( "ZDST0034" );
1953-
1954-
1955-ZorbaErrorCode ZDST0035_INDEX_GENERAL_MULTIKEY( "ZDST0035" );
1956-
1957-
1958-ZorbaErrorCode ZDST0036_INDEX_DECL_IN_FOREIGN_MODULE( "ZDST0036" );
1959-
1960-
1961-ZorbaErrorCode ZDST0041_IC_ALREADY_DECLARED( "ZDST0041" );
1962-
1963-
1964-ZorbaErrorCode ZDST0044_IC_DECL_IN_MAIN_MODULE( "ZDST0044" );
1965-
1966-
1967-ZorbaErrorCode ZDST0048_IC_DECL_IN_FOREIGN_MODULE( "ZDST0048" );
1968-
1969-
1970-ZorbaErrorCode ZDST0060_FEATURE_NOT_SUPPORTED( "ZDST0060" );
1971-
1972-
1973-ZorbaErrorCode ZDTY0001_COLLECTION_INVALID_NODE_TYPE( "ZDTY0001" );
1974-
1975-
1976-ZorbaErrorCode ZDTY0010_INDEX_DOMAIN_TYPE_ERROR( "ZDTY0010" );
1977-
1978-
1979-ZorbaErrorCode ZDTY0011_INDEX_KEY_TYPE_ERROR( "ZDTY0011" );
1980-
1981-
1982-ZorbaErrorCode ZDTY0012_INDEX_KEY_TYPE_ERROR( "ZDTY0012" );
1983+ZorbaErrorCode ZXQD0001_PREFIX_NOT_DECLARED( "zerr:ZXQD0001" );
1984+
1985+
1986+ZorbaErrorCode ZXQD0002_DOCUMENT_NOT_VALID( "zerr:ZXQD0002" );
1987+
1988+
1989+ZorbaErrorCode ZXQD0003_INCONSISTENT_PARSE_FRAGMENT_OPTIONS( "zerr:ZXQD0003" );
1990+
1991+
1992+ZorbaErrorCode ZXQD0004_INVALID_PARAMETER( "zerr:ZXQD0004" );
1993+
1994+
1995+ZorbaErrorCode ZXQD0005_INVALID_KEY_FOR_MAP( "zerr:ZXQD0005" );
1996+
1997+
1998+ZorbaErrorCode ZXQD0006_INVALID_UTF8_BYTE_SEQUENCE( "zerr:ZXQD0006" );
1999+
2000+
2001+ZorbaErrorCode ZAPI0002_XQUERY_COMPILATION_FAILED( "zerr:ZAPI0002" );
2002+
2003+
2004+ZorbaErrorCode ZAPI0003_XQUERY_NOT_COMPILED( "zerr:ZAPI0003" );
2005+
2006+
2007+ZorbaErrorCode ZAPI0004_XQUERY_ALREADY_COMPILED( "zerr:ZAPI0004" );
2008+
2009+
2010+ZorbaErrorCode ZAPI0005_XQUERY_ALREADY_EXECUTING( "zerr:ZAPI0005" );
2011+
2012+
2013+ZorbaErrorCode ZAPI0006_XQUERY_ALREADY_CLOSED( "zerr:ZAPI0006" );
2014+
2015+
2016+ZorbaErrorCode ZAPI0007_CANNOT_SERIALIZE_PUL( "zerr:ZAPI0007" );
2017+
2018+
2019+ZorbaErrorCode ZAPI0008_NOT_AN_UPDATE_XQUERY( "zerr:ZAPI0008" );
2020+
2021+
2022+ZorbaErrorCode ZAPI0009_XQUERY_NOT_COMPILED_IN_DEBUG_MODE( "zerr:ZAPI0009" );
2023+
2024+
2025+ZorbaErrorCode ZAPI0011_VARIABLE_NOT_DECLARED( "zerr:ZAPI0011" );
2026+
2027+
2028+ZorbaErrorCode ZAPI0014_INVALID_ARGUMENT( "zerr:ZAPI0014" );
2029+
2030+
2031+ZorbaErrorCode ZAPI0015_CREATEMODULE_NOT_FOUND( "zerr:ZAPI0015" );
2032+
2033+
2034+ZorbaErrorCode ZAPI0019_MODULE_ALREADY_REGISTERED( "zerr:ZAPI0019" );
2035+
2036+
2037+ZorbaErrorCode ZAPI0020_DOCUMENT_ALREADY_EXISTS( "zerr:ZAPI0020" );
2038+
2039+
2040+ZorbaErrorCode ZAPI0021_ITEM_TO_LOAD_IS_NOT_XML_DOC( "zerr:ZAPI0021" );
2041+
2042+
2043+ZorbaErrorCode ZAPI0023_NON_ATOMIC_CONTEXT_SIZE_VALUE( "zerr:ZAPI0023" );
2044+
2045+
2046+ZorbaErrorCode ZAPI0024_NON_INTEGER_CONTEXT_SIZE_VALUE( "zerr:ZAPI0024" );
2047+
2048+
2049+ZorbaErrorCode ZAPI0025_NON_ATOMIC_CONTEXT_POSITION_VALUE( "zerr:ZAPI0025" );
2050+
2051+
2052+ZorbaErrorCode ZAPI0026_NON_INTEGER_CONTEXT_POSITION_VALUE( "zerr:ZAPI0026" );
2053+
2054+
2055+ZorbaErrorCode ZAPI0027_CANNOT_UPDATE_DCTX_WITH_ITERATORS( "zerr:ZAPI0027" );
2056+
2057+
2058+ZorbaErrorCode ZAPI0028_INVALID_NODE_URI( "zerr:ZAPI0028" );
2059+
2060+
2061+ZorbaErrorCode ZAPI0029_REFERENCE_ALREADY_PRESENT( "zerr:ZAPI0029" );
2062+
2063+
2064+ZorbaErrorCode ZAPI0030_NO_CURRENT_REFERENCE( "zerr:ZAPI0030" );
2065+
2066+
2067+ZorbaErrorCode ZAPI0039_XQUERY_HAS_ITERATOR_ALREADY( "zerr:ZAPI0039" );
2068+
2069+
2070+ZorbaErrorCode ZAPI0040_ITERATOR_NOT_OPEN( "zerr:ZAPI0040" );
2071+
2072+
2073+ZorbaErrorCode ZAPI0041_ITERATOR_ALREADY_OPEN( "zerr:ZAPI0041" );
2074+
2075+
2076+ZorbaErrorCode ZAPI0042_ITERATOR_CLOSED( "zerr:ZAPI0042" );
2077+
2078+
2079+ZorbaErrorCode ZAPI0043_CANNOT_SERIALIZE_JSON_ITEM( "zerr:ZAPI0043" );
2080+
2081+
2082+ZorbaErrorCode ZAPI0045_CANNOT_SERIALIZE_MIXED_XDM_JDM( "zerr:ZAPI0045" );
2083+
2084+
2085+ZorbaErrorCode ZAPI0070_INVALID_SERIALIZATION_METHOD_FOR_SAX( "zerr:ZAPI0070" );
2086+
2087+
2088+ZorbaErrorCode ZAPI0080_CANNOT_RETRIEVE_REFERENCE( "zerr:ZAPI0080" );
2089+
2090+
2091+ZorbaErrorCode ZAPI0090_CANNOT_VALIDATE_NON_ROOT( "zerr:ZAPI0090" );
2092+
2093+
2094+ZorbaErrorCode ZCSE0001_NONEXISTENT_INPUT_FIELD( "zerr:ZCSE0001" );
2095+
2096+
2097+ZorbaErrorCode ZCSE0002_INCOMPATIBLE_INPUT_FIELD( "zerr:ZCSE0002" );
2098+
2099+
2100+ZorbaErrorCode ZCSE0003_UNRECOGNIZED_CLASS_FIELD( "zerr:ZCSE0003" );
2101+
2102+
2103+ZorbaErrorCode ZCSE0004_UNRESOLVED_FIELD_REFERENCE( "zerr:ZCSE0004" );
2104+
2105+
2106+ZorbaErrorCode ZCSE0005_CLASS_VERSION_TOO_NEW( "zerr:ZCSE0005" );
2107+
2108+
2109+ZorbaErrorCode ZCSE0006_CLASS_VERSION_TOO_OLD( "zerr:ZCSE0006" );
2110+
2111+
2112+ZorbaErrorCode ZCSE0007_INPUT_ARCHIVE_USED_FOR_OUT_SERIALIZATION( "zerr:ZCSE0007" );
2113+
2114+
2115+ZorbaErrorCode ZCSE0008_OUTPUT_ARCHIVE_USED_FOR_IN_SERIALIZATION( "zerr:ZCSE0008" );
2116+
2117+
2118+ZorbaErrorCode ZCSE0009_CLASS_NOT_SERIALIZABLE( "zerr:ZCSE0009" );
2119+
2120+
2121+ZorbaErrorCode ZCSE0010_ITEM_TYPE_NOT_SERIALIZABLE( "zerr:ZCSE0010" );
2122+
2123+
2124+ZorbaErrorCode ZCSE0011_INPUT_ARCHIVE_NOT_ZORBA_ARCHIVE( "zerr:ZCSE0011" );
2125+
2126+
2127+ZorbaErrorCode ZCSE0012_INCOMPATIBLE_ARCHIVE_VERSION( "zerr:ZCSE0012" );
2128+
2129+
2130+ZorbaErrorCode ZCSE0013_UNABLE_TO_LOAD_QUERY( "zerr:ZCSE0013" );
2131+
2132+
2133+ZorbaErrorCode ZCSE0014_INFINITE_CIRCULAR_DEPENDENCIES( "zerr:ZCSE0014" );
2134+
2135+
2136+ZorbaErrorCode ZCSE0015_INCOMPATIBLE_BETWEEN_32_AND_64_BITS_OR_LE_AND_BE( "zerr:ZCSE0015" );
2137+
2138+
2139+ZorbaErrorCode ZCSE0016_CANNOT_LOAD_FROM_RELEASE_TO_DEBUG( "zerr:ZCSE0016" );
2140+
2141+
2142+ZorbaErrorCode ZCSE0017_CANNOT_LOAD_FROM_DEBUG_TO_RELEASE( "zerr:ZCSE0017" );
2143+
2144+
2145+ZorbaErrorCode ZDDY0001_COLLECTION_NOT_DECLARED( "zerr:ZDDY0001" );
2146+
2147+
2148+ZorbaErrorCode ZDDY0002_COLLECTION_ALREADY_EXISTS( "zerr:ZDDY0002" );
2149+
2150+
2151+ZorbaErrorCode ZDDY0003_COLLECTION_DOES_NOT_EXIST( "zerr:ZDDY0003" );
2152+
2153+
2154+ZorbaErrorCode ZDDY0004_COLLECTION_CONST_UPDATE( "zerr:ZDDY0004" );
2155+
2156+
2157+ZorbaErrorCode ZDDY0005_COLLECTION_APPEND_BAD_INSERT( "zerr:ZDDY0005" );
2158+
2159+
2160+ZorbaErrorCode ZDDY0006_COLLECTION_QUEUE_BAD_INSERT( "zerr:ZDDY0006" );
2161+
2162+
2163+ZorbaErrorCode ZDDY0007_COLLECTION_APPEND_BAD_DELETE( "zerr:ZDDY0007" );
2164+
2165+
2166+ZorbaErrorCode ZDDY0008_COLLECTION_QUEUE_BAD_DELETE( "zerr:ZDDY0008" );
2167+
2168+
2169+ZorbaErrorCode ZDDY0009_COLLECTION_QUEUE_BAD_DELETE( "zerr:ZDDY0009" );
2170+
2171+
2172+ZorbaErrorCode ZDDY0010_COLLECTION_CONST_NODE_UPDATE( "zerr:ZDDY0010" );
2173+
2174+
2175+ZorbaErrorCode ZDDY0011_COLLECTION_NODE_NOT_FOUND( "zerr:ZDDY0011" );
2176+
2177+
2178+ZorbaErrorCode ZDDY0012_COLLECTION_UNORDERED_BAD_OPERATION( "zerr:ZDDY0012" );
2179+
2180+
2181+ZorbaErrorCode ZDDY0013_COLLECTION_BAD_DESTROY_INDEXES( "zerr:ZDDY0013" );
2182+
2183+
2184+ZorbaErrorCode ZDDY0014_COLLECTION_BAD_DESTROY_ICS( "zerr:ZDDY0014" );
2185+
2186+
2187+ZorbaErrorCode ZDDY0015_COLLECTION_BAD_DESTROY_NODES( "zerr:ZDDY0015" );
2188+
2189+
2190+ZorbaErrorCode ZDDY0016_COLLECTION_MULTIPLE_CREATES( "zerr:ZDDY0016" );
2191+
2192+
2193+ZorbaErrorCode ZDDY0017_NODE_IS_ORPHAN( "zerr:ZDDY0017" );
2194+
2195+
2196+ZorbaErrorCode ZDDY0018_NODES_NOT_IN_SAME_COLLECTION( "zerr:ZDDY0018" );
2197+
2198+
2199+ZorbaErrorCode ZDDY0020_INDEX_DOMAIN_NODE_NOT_IN_COLLECTION( "zerr:ZDDY0020" );
2200+
2201+
2202+ZorbaErrorCode ZDDY0019_COLLECTION_ITERATOR_NOT_OPEN( "zerr:ZDDY0019" );
2203+
2204+
2205+ZorbaErrorCode ZDDY0021_INDEX_NOT_DECLARED( "zerr:ZDDY0021" );
2206+
2207+
2208+ZorbaErrorCode ZDDY0022_INDEX_ALREADY_EXISTS( "zerr:ZDDY0022" );
2209+
2210+
2211+ZorbaErrorCode ZDDY0023_INDEX_DOES_NOT_EXIST( "zerr:ZDDY0023" );
2212+
2213+
2214+ZorbaErrorCode ZDDY0024_INDEX_UNIQUE_VIOLATION( "zerr:ZDDY0024" );
2215+
2216+
2217+ZorbaErrorCode ZDDY0025_INDEX_WRONG_NUMBER_OF_PROBE_ARGS( "zerr:ZDDY0025" );
2218+
2219+
2220+ZorbaErrorCode ZDDY0026_INDEX_RANGE_PROBE_NOT_ALLOWED( "zerr:ZDDY0026" );
2221+
2222+
2223+ZorbaErrorCode ZDDY0027_INDEX_MULTIPLE_CREATES( "zerr:ZDDY0027" );
2224+
2225+
2226+ZorbaErrorCode ZDDY0028_INDEX_DOMAIN_HAS_DUPLICATE_NODES( "zerr:ZDDY0028" );
2227+
2228+
2229+ZorbaErrorCode ZDDY0029_INDEX_POINT_GENERAL_PROBE_NOT_ALLOWED( "zerr:ZDDY0029" );
2230+
2231+
2232+ZorbaErrorCode ZDDY0030_INDEX_RANGE_GENERAL_PROBE_NOT_ALLOWED( "zerr:ZDDY0030" );
2233+
2234+
2235+ZorbaErrorCode ZDDY0031_IC_NOT_DECLARED( "zerr:ZDDY0031" );
2236+
2237+
2238+ZorbaErrorCode ZDDY0032_IC_NOT_ACTIVATED( "zerr:ZDDY0032" );
2239+
2240+
2241+ZorbaErrorCode ZDDY0033_IC_NOT_MET( "zerr:ZDDY0033" );
2242+
2243+
2244+ZorbaErrorCode ZDDY0034_INDEX_RANGE_VALUE_PROBE_BAD_KEY_TYPES( "zerr:ZDDY0034" );
2245+
2246+
2247+ZorbaErrorCode ZDDY0035_INDEX_GENERAL_INSERT( "zerr:ZDDY0035" );
2248+
2249+
2250+ZorbaErrorCode ZDDY0036_NON_ROOT_NODE_DELETION( "zerr:ZDDY0036" );
2251+
2252+
2253+ZorbaErrorCode ZDDY0037_COLLECTION_APPEND_BAD_EDIT( "zerr:ZDDY0037" );
2254+
2255+
2256+ZorbaErrorCode ZDDY0038_COLLECTION_QUEUE_BAD_EDIT( "zerr:ZDDY0038" );
2257+
2258+
2259+ZorbaErrorCode ZDDY0039_NON_ROOT_NODE_EDIT( "zerr:ZDDY0039" );
2260+
2261+
2262+ZorbaErrorCode ZDDY0040_INCONSISTENT_EDIT( "zerr:ZDDY0040" );
2263+
2264+
2265+ZorbaErrorCode ZDDY0041_CONCURRENT_MODIFICATION( "zerr:ZDDY0041" );
2266+
2267+
2268+ZorbaErrorCode ZDDY0042_ITEM_NOT_IN_COLLECTION( "zerr:ZDDY0042" );
2269+
2270+
2271+ZorbaErrorCode ZDDY0043_INVALID_OPTION_TYPE( "zerr:ZDDY0043" );
2272+
2273+
2274+ZorbaErrorCode ZDST0001_COLLECTION_ALREADY_DECLARED( "zerr:ZDST0001" );
2275+
2276+
2277+ZorbaErrorCode ZDST0002_COLLECTION_ALREADY_IMPORTED( "zerr:ZDST0002" );
2278+
2279+
2280+ZorbaErrorCode ZDST0003_COLLECTION_DECL_IN_MAIN_MODULE( "zerr:ZDST0003" );
2281+
2282+
2283+ZorbaErrorCode ZDST0004_COLLECTION_MULTIPLE_PROPERTY_VALUES( "zerr:ZDST0004" );
2284+
2285+
2286+ZorbaErrorCode ZDST0006_COLLECTION_INVALID_PROPERTY_VALUE( "zerr:ZDST0006" );
2287+
2288+
2289+ZorbaErrorCode ZDST0007_COLLECTION_DECL_IN_FOREIGN_MODULE( "zerr:ZDST0007" );
2290+
2291+
2292+ZorbaErrorCode ZDST0021_INDEX_ALREADY_DECLARED( "zerr:ZDST0021" );
2293+
2294+
2295+ZorbaErrorCode ZDST0022_INDEX_ALREADY_IMPORTED( "zerr:ZDST0022" );
2296+
2297+
2298+ZorbaErrorCode ZDST0023_INDEX_DECL_IN_MAIN_MODULE( "zerr:ZDST0023" );
2299+
2300+
2301+ZorbaErrorCode ZDST0024_INDEX_MULTIPLE_PROPERTY_VALUES( "zerr:ZDST0024" );
2302+
2303+
2304+ZorbaErrorCode ZDST0025_INDEX_BAD_UNIQUE_PROPERTY( "zerr:ZDST0025" );
2305+
2306+
2307+ZorbaErrorCode ZDST0026_INDEX_INVALID_PROPERTY_VALUE( "zerr:ZDST0026" );
2308+
2309+
2310+ZorbaErrorCode ZDST0027_INDEX_BAD_KEY_TYPE( "zerr:ZDST0027" );
2311+
2312+
2313+ZorbaErrorCode ZDST0028_INDEX_NOT_DETERMINISTIC( "zerr:ZDST0028" );
2314+
2315+
2316+ZorbaErrorCode ZDST0029_INDEX_INVALID_DATA_SOURCE( "zerr:ZDST0029" );
2317+
2318+
2319+ZorbaErrorCode ZDST0030_INDEX_NON_CONST_DATA_SOURCE( "zerr:ZDST0030" );
2320+
2321+
2322+ZorbaErrorCode ZDST0031_INDEX_HAS_FREE_VARS( "zerr:ZDST0031" );
2323+
2324+
2325+ZorbaErrorCode ZDST0032_INDEX_REFERENCES_CTX_ITEM( "zerr:ZDST0032" );
2326+
2327+
2328+ZorbaErrorCode ZDST0033_INDEX_NON_SIMPLE_EXPR( "zerr:ZDST0033" );
2329+
2330+
2331+ZorbaErrorCode ZDST0034_INDEX_CANNOT_DO_AUTOMATIC_MAINTENANCE( "zerr:ZDST0034" );
2332+
2333+
2334+ZorbaErrorCode ZDST0035_INDEX_GENERAL_MULTIKEY( "zerr:ZDST0035" );
2335+
2336+
2337+ZorbaErrorCode ZDST0036_INDEX_DECL_IN_FOREIGN_MODULE( "zerr:ZDST0036" );
2338+
2339+
2340+ZorbaErrorCode ZDST0041_IC_ALREADY_DECLARED( "zerr:ZDST0041" );
2341+
2342+
2343+ZorbaErrorCode ZDST0044_IC_DECL_IN_MAIN_MODULE( "zerr:ZDST0044" );
2344+
2345+
2346+ZorbaErrorCode ZDST0048_IC_DECL_IN_FOREIGN_MODULE( "zerr:ZDST0048" );
2347+
2348+
2349+ZorbaErrorCode ZDST0060_FEATURE_NOT_SUPPORTED( "zerr:ZDST0060" );
2350+
2351+
2352+ZorbaErrorCode ZDTY0001_COLLECTION_INVALID_NODE_TYPE( "zerr:ZDTY0001" );
2353+
2354+
2355+ZorbaErrorCode ZDTY0010_INDEX_DOMAIN_TYPE_ERROR( "zerr:ZDTY0010" );
2356+
2357+
2358+ZorbaErrorCode ZDTY0011_INDEX_KEY_TYPE_ERROR( "zerr:ZDTY0011" );
2359+
2360+
2361+ZorbaErrorCode ZDTY0012_INDEX_KEY_TYPE_ERROR( "zerr:ZDTY0012" );
2362
2363
2364 #if defined(ZORBA_WITH_DEBUGGER)
2365-ZorbaErrorCode ZGDB0001_CANNOT_CONNECT_TO_CLIENT( "ZGDB0001" );
2366+ZorbaErrorCode ZGDB0001_CANNOT_CONNECT_TO_CLIENT( "zerr:ZGDB0001" );
2367 #endif
2368
2369
2370-ZorbaErrorCode ZOSE0001_FILE_NOT_FOUND( "ZOSE0001" );
2371-
2372-
2373-ZorbaErrorCode ZOSE0002_NOT_PLAIN_FILE( "ZOSE0002" );
2374-
2375-
2376-ZorbaErrorCode ZOSE0003_STREAM_READ_FAILURE( "ZOSE0003" );
2377-
2378-
2379-ZorbaErrorCode ZOSE0004_IO_ERROR( "ZOSE0004" );
2380-
2381-
2382-ZorbaErrorCode ZOSE0005_DLL_LOAD_FAILED( "ZOSE0005" );
2383-
2384-
2385-ZorbaErrorCode ZOSE0006_TRANSCODING_ERROR( "ZOSE0006" );
2386-
2387-
2388-ZorbaErrorCode ZOSE0007_UNSUPPORTED_LOCALE( "ZOSE0007" );
2389-
2390-
2391-ZorbaErrorCode ZSTR0001_INDEX_ALREADY_EXISTS( "ZSTR0001" );
2392-
2393-
2394-ZorbaErrorCode ZSTR0002_INDEX_DOES_NOT_EXIST( "ZSTR0002" );
2395-
2396-
2397-ZorbaErrorCode ZSTR0003_INDEX_PARTIAL_KEY_INSERT( "ZSTR0003" );
2398-
2399-
2400-ZorbaErrorCode ZSTR0004_INDEX_PARTIAL_KEY_REMOVE( "ZSTR0004" );
2401-
2402-
2403-ZorbaErrorCode ZSTR0007_INDEX_UNSUPPORTED_PROBE_CONDITION( "ZSTR0007" );
2404-
2405-
2406-ZorbaErrorCode ZSTR0008_COLLECTION_ALREADY_EXISTS( "ZSTR0008" );
2407-
2408-
2409-ZorbaErrorCode ZSTR0009_COLLECTION_NOT_FOUND( "ZSTR0009" );
2410-
2411-
2412-ZorbaErrorCode ZSTR0010_COLLECTION_NODE_ALREADY_IN_COLLECTION( "ZSTR0010" );
2413-
2414-
2415-ZorbaErrorCode ZSTR0011_COLLECTION_NON_ROOT_NODE( "ZSTR0011" );
2416-
2417-
2418-ZorbaErrorCode ZSTR0012_COLLECTION_ITEM_MUST_BE_A_NODE( "ZSTR0012" );
2419-
2420-
2421-ZorbaErrorCode ZSTR0013_COLLECTION_ITEM_MUST_BE_STRUCTURED( "ZSTR0013" );
2422-
2423-
2424-ZorbaErrorCode ZSTR0015_IC_ALREADY_EXISTS( "ZSTR0015" );
2425-
2426-
2427-ZorbaErrorCode ZSTR0016_IC_DOES_NOT_EXIST( "ZSTR0016" );
2428-
2429-
2430-ZorbaErrorCode ZSTR0020_LOADER_IO_ERROR( "ZSTR0020" );
2431-
2432-
2433-ZorbaErrorCode ZSTR0021_LOADER_PARSING_ERROR( "ZSTR0021" );
2434-
2435-
2436-ZorbaErrorCode ZSTR0030_NODEID_ERROR( "ZSTR0030" );
2437-
2438-
2439-ZorbaErrorCode ZSTR0040_TYPE_ERROR( "ZSTR0040" );
2440-
2441-
2442-ZorbaErrorCode ZSTR0041_NAN_COMPARISON( "ZSTR0041" );
2443-
2444-
2445-ZorbaErrorCode ZSTR0045_DUPLICATE_NODE_ERROR( "ZSTR0045" );
2446-
2447-
2448-ZorbaErrorCode ZSTR0050_FUNCTION_NOT_IMPLEMENTED_FOR_ITEMTYPE( "ZSTR0050" );
2449-
2450-
2451-ZorbaErrorCode ZSTR0055_STREAMABLE_STRING_CONSUMED( "ZSTR0055" );
2452-
2453-
2454-ZorbaErrorCode ZSTR0060_RANGE_EXCEPTION( "ZSTR0060" );
2455-
2456-
2457-ZorbaErrorCode ZSTR0065_STRINGS_IN_POOL( "ZSTR0065" );
2458-
2459-
2460-ZorbaErrorCode ZSTR0066_REFERENCED_NODE_NOT_IN_COLLECTION( "ZSTR0066" );
2461-
2462-
2463-ZorbaErrorCode XSST0001( "XSST0001" );
2464-
2465-
2466-ZorbaErrorCode XSST0002( "XSST0002" );
2467-
2468-
2469-ZorbaErrorCode XSST0003( "XSST0003" );
2470-
2471-
2472-ZorbaErrorCode XSST0004( "XSST0004" );
2473-
2474-
2475-ZorbaErrorCode XSST0005( "XSST0005" );
2476-
2477-
2478-ZorbaErrorCode XSST0006( "XSST0006" );
2479-
2480-
2481-ZorbaErrorCode XSST0007( "XSST0007" );
2482-
2483-
2484-ZorbaErrorCode XSST0008( "XSST0008" );
2485-
2486-
2487-ZorbaErrorCode XSST0009( "XSST0009" );
2488-
2489-
2490-ZorbaErrorCode XSST0010( "XSST0010" );
2491-
2492-
2493-ZorbaErrorCode ZJPE0001_ILLEGAL_CHARACTER( "ZJPE0001" );
2494-
2495-
2496-ZorbaErrorCode ZJPE0002_ILLEGAL_CODEPOINT( "ZJPE0002" );
2497-
2498-
2499-ZorbaErrorCode ZJPE0003_ILLEGAL_ESCAPE( "ZJPE0003" );
2500-
2501-
2502-ZorbaErrorCode ZJPE0004_ILLEGAL_LITERAL( "ZJPE0004" );
2503-
2504-
2505-ZorbaErrorCode ZJPE0005_ILLEGAL_NUMBER( "ZJPE0005" );
2506-
2507-
2508-ZorbaErrorCode ZJPE0006_UNEXPECTED_TOKEN( "ZJPE0006" );
2509-
2510-
2511-ZorbaErrorCode ZJPE0007_UNTERMINATED_STRING( "ZJPE0007" );
2512-
2513-
2514-ZorbaErrorCode ZJPE0008_ILLEGAL_QNAME( "ZJPE0008" );
2515-
2516-
2517-ZorbaErrorCode ZJPE0009_ILLEGAL_EMPTY_STRING( "ZJPE0009" );
2518-
2519-
2520-ZorbaErrorCode ZJPE0010_JSONML_ARRAY_REQUIRES_BRACKET( "ZJPE0010" );
2521-
2522-
2523-ZorbaErrorCode ZJSE0001_NOT_ELEMENT_NODE( "ZJSE0001" );
2524-
2525-
2526-ZorbaErrorCode ZJSE0002_ELEMENT_MISSING_ATTRIBUTE( "ZJSE0002" );
2527-
2528-
2529-ZorbaErrorCode ZJSE0003_BAD_ATTRIBUTE_VALUE( "ZJSE0003" );
2530-
2531-
2532-ZorbaErrorCode ZJSE0004_BAD_NODE( "ZJSE0004" );
2533-
2534-
2535-ZorbaErrorCode ZJSE0007_ELEMENT_MISSING_VALUE( "ZJSE0007" );
2536-
2537-
2538-ZorbaErrorCode ZJSE0008_BAD_ELEMENT_VALUE( "ZJSE0008" );
2539-
2540-
2541-ZorbaErrorCode ZJSE0009_MULTIPLE_CHILDREN( "ZJSE0009" );
2542-
2543-
2544-ZorbaErrorCode ZJ2X0001_JSONML_ARRAY_BAD_JSON( "ZJ2X0001" );
2545-
2546-
2547-ZorbaErrorCode ZJ2X0002_JSONML_OBJECT_BAD_JSON( "ZJ2X0002" );
2548+ZorbaErrorCode ZOSE0001_FILE_NOT_FOUND( "zerr:ZOSE0001" );
2549+
2550+
2551+ZorbaErrorCode ZOSE0002_NOT_PLAIN_FILE( "zerr:ZOSE0002" );
2552+
2553+
2554+ZorbaErrorCode ZOSE0003_STREAM_READ_FAILURE( "zerr:ZOSE0003" );
2555+
2556+
2557+ZorbaErrorCode ZOSE0004_IO_ERROR( "zerr:ZOSE0004" );
2558+
2559+
2560+ZorbaErrorCode ZOSE0005_DLL_LOAD_FAILED( "zerr:ZOSE0005" );
2561+
2562+
2563+ZorbaErrorCode ZOSE0006_TRANSCODING_ERROR( "zerr:ZOSE0006" );
2564+
2565+
2566+ZorbaErrorCode ZOSE0007_UNSUPPORTED_LOCALE( "zerr:ZOSE0007" );
2567+
2568+
2569+ZorbaErrorCode ZSTR0001_INDEX_ALREADY_EXISTS( "zerr:ZSTR0001" );
2570+
2571+
2572+ZorbaErrorCode ZSTR0002_INDEX_DOES_NOT_EXIST( "zerr:ZSTR0002" );
2573+
2574+
2575+ZorbaErrorCode ZSTR0003_INDEX_PARTIAL_KEY_INSERT( "zerr:ZSTR0003" );
2576+
2577+
2578+ZorbaErrorCode ZSTR0004_INDEX_PARTIAL_KEY_REMOVE( "zerr:ZSTR0004" );
2579+
2580+
2581+ZorbaErrorCode ZSTR0007_INDEX_UNSUPPORTED_PROBE_CONDITION( "zerr:ZSTR0007" );
2582+
2583+
2584+ZorbaErrorCode ZSTR0008_COLLECTION_ALREADY_EXISTS( "zerr:ZSTR0008" );
2585+
2586+
2587+ZorbaErrorCode ZSTR0009_COLLECTION_NOT_FOUND( "zerr:ZSTR0009" );
2588+
2589+
2590+ZorbaErrorCode ZSTR0010_COLLECTION_NODE_ALREADY_IN_COLLECTION( "zerr:ZSTR0010" );
2591+
2592+
2593+ZorbaErrorCode ZSTR0011_COLLECTION_NON_ROOT_NODE( "zerr:ZSTR0011" );
2594+
2595+
2596+ZorbaErrorCode ZSTR0012_COLLECTION_ITEM_MUST_BE_A_NODE( "zerr:ZSTR0012" );
2597+
2598+
2599+ZorbaErrorCode ZSTR0013_COLLECTION_ITEM_MUST_BE_STRUCTURED( "zerr:ZSTR0013" );
2600+
2601+
2602+ZorbaErrorCode ZSTR0015_IC_ALREADY_EXISTS( "zerr:ZSTR0015" );
2603+
2604+
2605+ZorbaErrorCode ZSTR0016_IC_DOES_NOT_EXIST( "zerr:ZSTR0016" );
2606+
2607+
2608+ZorbaErrorCode ZSTR0020_LOADER_IO_ERROR( "zerr:ZSTR0020" );
2609+
2610+
2611+ZorbaErrorCode ZSTR0021_LOADER_PARSING_ERROR( "zerr:ZSTR0021" );
2612+
2613+
2614+ZorbaErrorCode ZSTR0030_NODEID_ERROR( "zerr:ZSTR0030" );
2615+
2616+
2617+ZorbaErrorCode ZSTR0040_TYPE_ERROR( "zerr:ZSTR0040" );
2618+
2619+
2620+ZorbaErrorCode ZSTR0041_NAN_COMPARISON( "zerr:ZSTR0041" );
2621+
2622+
2623+ZorbaErrorCode ZSTR0045_DUPLICATE_NODE_ERROR( "zerr:ZSTR0045" );
2624+
2625+
2626+ZorbaErrorCode ZSTR0050_FUNCTION_NOT_IMPLEMENTED_FOR_ITEMTYPE( "zerr:ZSTR0050" );
2627+
2628+
2629+ZorbaErrorCode ZSTR0055_STREAMABLE_STRING_CONSUMED( "zerr:ZSTR0055" );
2630+
2631+
2632+ZorbaErrorCode ZSTR0060_RANGE_EXCEPTION( "zerr:ZSTR0060" );
2633+
2634+
2635+ZorbaErrorCode ZSTR0065_STRINGS_IN_POOL( "zerr:ZSTR0065" );
2636+
2637+
2638+ZorbaErrorCode ZSTR0066_REFERENCED_NODE_NOT_IN_COLLECTION( "zerr:ZSTR0066" );
2639+
2640+
2641+ZorbaErrorCode XSST0001( "zerr:XSST0001" );
2642+
2643+
2644+ZorbaErrorCode XSST0002( "zerr:XSST0002" );
2645+
2646+
2647+ZorbaErrorCode XSST0003( "zerr:XSST0003" );
2648+
2649+
2650+ZorbaErrorCode XSST0004( "zerr:XSST0004" );
2651+
2652+
2653+ZorbaErrorCode XSST0005( "zerr:XSST0005" );
2654+
2655+
2656+ZorbaErrorCode XSST0006( "zerr:XSST0006" );
2657+
2658+
2659+ZorbaErrorCode XSST0007( "zerr:XSST0007" );
2660+
2661+
2662+ZorbaErrorCode XSST0008( "zerr:XSST0008" );
2663+
2664+
2665+ZorbaErrorCode XSST0009( "zerr:XSST0009" );
2666+
2667+
2668+ZorbaErrorCode XSST0010( "zerr:XSST0010" );
2669+
2670+
2671+ZorbaErrorCode ZJPE0001_ILLEGAL_CHARACTER( "zerr:ZJPE0001" );
2672+
2673+
2674+ZorbaErrorCode ZJPE0002_ILLEGAL_CODEPOINT( "zerr:ZJPE0002" );
2675+
2676+
2677+ZorbaErrorCode ZJPE0003_ILLEGAL_ESCAPE( "zerr:ZJPE0003" );
2678+
2679+
2680+ZorbaErrorCode ZJPE0004_ILLEGAL_LITERAL( "zerr:ZJPE0004" );
2681+
2682+
2683+ZorbaErrorCode ZJPE0005_ILLEGAL_NUMBER( "zerr:ZJPE0005" );
2684+
2685+
2686+ZorbaErrorCode ZJPE0006_UNEXPECTED_TOKEN( "zerr:ZJPE0006" );
2687+
2688+
2689+ZorbaErrorCode ZJPE0007_UNTERMINATED_STRING( "zerr:ZJPE0007" );
2690+
2691+
2692+ZorbaErrorCode ZJPE0008_ILLEGAL_QNAME( "zerr:ZJPE0008" );
2693+
2694+
2695+ZorbaErrorCode ZJPE0009_ILLEGAL_EMPTY_STRING( "zerr:ZJPE0009" );
2696+
2697+
2698+ZorbaErrorCode ZJPE0010_JSONML_ARRAY_REQUIRES_BRACKET( "zerr:ZJPE0010" );
2699+
2700+
2701+ZorbaErrorCode ZJSE0001_NOT_ELEMENT_NODE( "zerr:ZJSE0001" );
2702+
2703+
2704+ZorbaErrorCode ZJSE0002_ELEMENT_MISSING_ATTRIBUTE( "zerr:ZJSE0002" );
2705+
2706+
2707+ZorbaErrorCode ZJSE0003_BAD_ATTRIBUTE_VALUE( "zerr:ZJSE0003" );
2708+
2709+
2710+ZorbaErrorCode ZJSE0004_BAD_NODE( "zerr:ZJSE0004" );
2711+
2712+
2713+ZorbaErrorCode ZJSE0007_ELEMENT_MISSING_VALUE( "zerr:ZJSE0007" );
2714+
2715+
2716+ZorbaErrorCode ZJSE0008_BAD_ELEMENT_VALUE( "zerr:ZJSE0008" );
2717+
2718+
2719+ZorbaErrorCode ZJSE0009_MULTIPLE_CHILDREN( "zerr:ZJSE0009" );
2720+
2721+
2722+ZorbaErrorCode ZJ2X0001_JSONML_ARRAY_BAD_JSON( "zerr:ZJ2X0001" );
2723+
2724+
2725+ZorbaErrorCode ZJ2X0002_JSONML_OBJECT_BAD_JSON( "zerr:ZJ2X0002" );
2726
2727
2728 } // namespace zerr
2729
2730 namespace jerr {
2731
2732-JSONiqErrorCode JNTY0002( "JNTY0002" );
2733-
2734-
2735-JSONiqErrorCode JNDY0003( "JNDY0003" );
2736-
2737-
2738-JSONiqErrorCode JNTY0004( "JNTY0004" );
2739-
2740-
2741-JSONiqErrorCode JNUP0005( "JNUP0005" );
2742-
2743-
2744-JSONiqErrorCode JNUP0006( "JNUP0006" );
2745-
2746-
2747-JSONiqErrorCode JNUP0007( "JNUP0007" );
2748-
2749-
2750-JSONiqErrorCode JNUP0008( "JNUP0008" );
2751-
2752-
2753-JSONiqErrorCode JNUP0009( "JNUP0009" );
2754-
2755-
2756-JSONiqErrorCode JNUP0010( "JNUP0010" );
2757-
2758-
2759-JSONiqErrorCode JNTY0011( "JNTY0011" );
2760-
2761-
2762-JSONiqErrorCode JNSE0012( "JNSE0012" );
2763-
2764-
2765-JSONiqErrorCode JNSE0013( "JNSE0013" );
2766-
2767-
2768-JSONiqErrorCode JNSE0014( "JNSE0014" );
2769-
2770-
2771-JSONiqErrorCode JNSE0022( "JNSE0022" );
2772-
2773-
2774-JSONiqErrorCode JNUP0016( "JNUP0016" );
2775-
2776-
2777-JSONiqErrorCode JNUP0017( "JNUP0017" );
2778-
2779-
2780-JSONiqErrorCode JNTY0018( "JNTY0018" );
2781-
2782-
2783-JSONiqErrorCode JNUP0019( "JNUP0019" );
2784-
2785-
2786-JSONiqErrorCode JNTY0023( "JNTY0023" );
2787-
2788-
2789-JSONiqErrorCode JNTY0024( "JNTY0024" );
2790-
2791-
2792-JSONiqErrorCode JNTY0020( "JNTY0020" );
2793-
2794-
2795-JSONiqErrorCode JNTY0021( "JNTY0021" );
2796-
2797-
2798-JSONiqErrorCode JNDY0021( "JNDY0021" );
2799+JSONiqErrorCode JNTY0002( "jerr:JNTY0002" );
2800+
2801+
2802+JSONiqErrorCode JNDY0003( "jerr:JNDY0003" );
2803+
2804+
2805+JSONiqErrorCode JNTY0004( "jerr:JNTY0004" );
2806+
2807+
2808+JSONiqErrorCode JNUP0005( "jerr:JNUP0005" );
2809+
2810+
2811+JSONiqErrorCode JNUP0006( "jerr:JNUP0006" );
2812+
2813+
2814+JSONiqErrorCode JNUP0007( "jerr:JNUP0007" );
2815+
2816+
2817+JSONiqErrorCode JNUP0008( "jerr:JNUP0008" );
2818+
2819+
2820+JSONiqErrorCode JNUP0009( "jerr:JNUP0009" );
2821+
2822+
2823+JSONiqErrorCode JNUP0010( "jerr:JNUP0010" );
2824+
2825+
2826+JSONiqErrorCode JNTY0011( "jerr:JNTY0011" );
2827+
2828+
2829+JSONiqErrorCode JNSE0012( "jerr:JNSE0012" );
2830+
2831+
2832+JSONiqErrorCode JNSE0013( "jerr:JNSE0013" );
2833+
2834+
2835+JSONiqErrorCode JNSE0014( "jerr:JNSE0014" );
2836+
2837+
2838+JSONiqErrorCode JNSE0022( "jerr:JNSE0022" );
2839+
2840+
2841+JSONiqErrorCode JNUP0016( "jerr:JNUP0016" );
2842+
2843+
2844+JSONiqErrorCode JNUP0017( "jerr:JNUP0017" );
2845+
2846+
2847+JSONiqErrorCode JNTY0018( "jerr:JNTY0018" );
2848+
2849+
2850+JSONiqErrorCode JNUP0019( "jerr:JNUP0019" );
2851+
2852+
2853+JSONiqErrorCode JNTY0023( "jerr:JNTY0023" );
2854+
2855+
2856+JSONiqErrorCode JNTY0024( "jerr:JNTY0024" );
2857+
2858+
2859+JSONiqErrorCode JNTY0020( "jerr:JNTY0020" );
2860+
2861+
2862+JSONiqErrorCode JNTY0021( "jerr:JNTY0021" );
2863+
2864+
2865+JSONiqErrorCode JNDY0021( "jerr:JNDY0021" );
2866
2867
2868 } // namespace jerr
2869
2870 namespace jse {
2871
2872-JSoundErrorCode DUPLICATE_PREFIX( "DUPLICATE_PREFIX" );
2873-
2874-
2875-JSoundErrorCode DUPLICATE_TYPE( "DUPLICATE_TYPE" );
2876-
2877-
2878-JSoundErrorCode ILLEGAL_ARRAY_SIZE( "ILLEGAL_ARRAY_SIZE" );
2879-
2880-
2881-JSoundErrorCode ILLEGAL_BASE_TYPE( "ILLEGAL_BASE_TYPE" );
2882-
2883-
2884-JSoundErrorCode ILLEGAL_FACET( "ILLEGAL_FACET" );
2885-
2886-
2887-JSoundErrorCode ILLEGAL_FACET_VALUE( "ILLEGAL_FACET_VALUE" );
2888-
2889-
2890-JSoundErrorCode ILLEGAL_KEY( "ILLEGAL_KEY" );
2891-
2892-
2893-JSoundErrorCode ILLEGAL_NAMESPACE( "ILLEGAL_NAMESPACE" );
2894-
2895-
2896-JSoundErrorCode ILLEGAL_PREFIX( "ILLEGAL_PREFIX" );
2897-
2898-
2899-JSoundErrorCode ILLEGAL_SCHEMA( "ILLEGAL_SCHEMA" );
2900-
2901-
2902-JSoundErrorCode ILLEGAL_TYPE( "ILLEGAL_TYPE" );
2903-
2904-
2905-JSoundErrorCode INVALID_OPTION( "INVALID_OPTION" );
2906-
2907-
2908-JSoundErrorCode MISSING_KEY( "MISSING_KEY" );
2909-
2910-
2911-JSoundErrorCode NEW_KEY_NOT_ALLOWED( "NEW_KEY_NOT_ALLOWED" );
2912-
2913-
2914-JSoundErrorCode SCHEMA_NOT_FOUND( "SCHEMA_NOT_FOUND" );
2915-
2916-
2917-JSoundErrorCode TYPE_MISMATCH( "TYPE_MISMATCH" );
2918-
2919-
2920-JSoundErrorCode UNKNOWN_PREFIX( "UNKNOWN_PREFIX" );
2921-
2922-
2923-JSoundErrorCode UNKNOWN_TYPE( "UNKNOWN_TYPE" );
2924-
2925-
2926-JSoundErrorCode FACET_VIOLATION( "FACET_VIOLATION" );
2927-
2928-
2929-JSoundErrorCode TYPE_VIOLATION( "TYPE_VIOLATION" );
2930+JSoundErrorCode DUPLICATE_PREFIX( "jse:DUPLICATE_PREFIX" );
2931+
2932+
2933+JSoundErrorCode DUPLICATE_TYPE( "jse:DUPLICATE_TYPE" );
2934+
2935+
2936+JSoundErrorCode ILLEGAL_ARRAY_SIZE( "jse:ILLEGAL_ARRAY_SIZE" );
2937+
2938+
2939+JSoundErrorCode ILLEGAL_BASE_TYPE( "jse:ILLEGAL_BASE_TYPE" );
2940+
2941+
2942+JSoundErrorCode ILLEGAL_FACET( "jse:ILLEGAL_FACET" );
2943+
2944+
2945+JSoundErrorCode ILLEGAL_FACET_VALUE( "jse:ILLEGAL_FACET_VALUE" );
2946+
2947+
2948+JSoundErrorCode ILLEGAL_KEY( "jse:ILLEGAL_KEY" );
2949+
2950+
2951+JSoundErrorCode ILLEGAL_NAMESPACE( "jse:ILLEGAL_NAMESPACE" );
2952+
2953+
2954+JSoundErrorCode ILLEGAL_PREFIX( "jse:ILLEGAL_PREFIX" );
2955+
2956+
2957+JSoundErrorCode ILLEGAL_SCHEMA( "jse:ILLEGAL_SCHEMA" );
2958+
2959+
2960+JSoundErrorCode ILLEGAL_TYPE( "jse:ILLEGAL_TYPE" );
2961+
2962+
2963+JSoundErrorCode INVALID_OPTION( "jse:INVALID_OPTION" );
2964+
2965+
2966+JSoundErrorCode MISSING_KEY( "jse:MISSING_KEY" );
2967+
2968+
2969+JSoundErrorCode NEW_KEY_NOT_ALLOWED( "jse:NEW_KEY_NOT_ALLOWED" );
2970+
2971+
2972+JSoundErrorCode SCHEMA_NOT_FOUND( "jse:SCHEMA_NOT_FOUND" );
2973+
2974+
2975+JSoundErrorCode TYPE_MISMATCH( "jse:TYPE_MISMATCH" );
2976+
2977+
2978+JSoundErrorCode UNKNOWN_PREFIX( "jse:UNKNOWN_PREFIX" );
2979+
2980+
2981+JSoundErrorCode UNKNOWN_TYPE( "jse:UNKNOWN_TYPE" );
2982+
2983+
2984+JSoundErrorCode FACET_VIOLATION( "jse:FACET_VIOLATION" );
2985+
2986+
2987+JSoundErrorCode TYPE_VIOLATION( "jse:TYPE_VIOLATION" );
2988
2989
2990 } // namespace jse
2991
2992 namespace zwarn {
2993
2994-ZorbaWarningCode ZWST0002_UNKNOWN_ANNOTATION( "ZWST0002" );
2995-
2996-
2997-ZorbaWarningCode ZWST0003_FAKE_SEQUENTIAL_FUNCTION( "ZWST0003" );
2998-
2999-
3000-ZorbaWarningCode ZWST0004_AMBIGUOUS_SEQUENTIAL_FLWOR( "ZWST0004" );
3001-
3002-
3003-ZorbaWarningCode ZWST0005_CACHING_NOT_POSSIBLE( "ZWST0005" );
3004-
3005-
3006-ZorbaWarningCode ZWST0006_CACHING_MIGHT_NOT_BE_INTENDED( "ZWST0006" );
3007-
3008-
3009-ZorbaWarningCode ZWST0007_LOADER_PARSING_WARNING( "ZWST0007" );
3010-
3011-
3012-ZorbaWarningCode ZWST0008_DEPRECATED( "ZWST0008" );
3013-
3014-
3015-ZorbaWarningCode ZWST0009_COMMON_LANGUAGE_WARNING( "ZWST0009" );
3016+ZorbaWarningCode ZWST0002_UNKNOWN_ANNOTATION( "zwarn:ZWST0002" );
3017+
3018+
3019+ZorbaWarningCode ZWST0003_FAKE_SEQUENTIAL_FUNCTION( "zwarn:ZWST0003" );
3020+
3021+
3022+ZorbaWarningCode ZWST0004_AMBIGUOUS_SEQUENTIAL_FLWOR( "zwarn:ZWST0004" );
3023+
3024+
3025+ZorbaWarningCode ZWST0005_CACHING_NOT_POSSIBLE( "zwarn:ZWST0005" );
3026+
3027+
3028+ZorbaWarningCode ZWST0006_CACHING_MIGHT_NOT_BE_INTENDED( "zwarn:ZWST0006" );
3029+
3030+
3031+ZorbaWarningCode ZWST0007_LOADER_PARSING_WARNING( "zwarn:ZWST0007" );
3032+
3033+
3034+ZorbaWarningCode ZWST0008_DEPRECATED( "zwarn:ZWST0008" );
3035+
3036+
3037+ZorbaWarningCode ZWST0009_COMMON_LANGUAGE_WARNING( "zwarn:ZWST0009" );
3038
3039
3040 } // namespace zwarn
3041
3042 namespace csv {
3043
3044-ZorbaCSVErrorCode INVALID_OPTION( "INVALID_OPTION" );
3045-
3046-
3047-ZorbaCSVErrorCode INVALID_CSV_VALUE( "INVALID_CSV_VALUE" );
3048-
3049-
3050-ZorbaCSVErrorCode MISSING_VALUE( "MISSING_VALUE" );
3051-
3052-
3053-ZorbaCSVErrorCode EXTRA_VALUE( "EXTRA_VALUE" );
3054+ZorbaCSVErrorCode INVALID_OPTION( "csv:INVALID_OPTION" );
3055+
3056+
3057+ZorbaCSVErrorCode INVALID_VALUE( "csv:INVALID_VALUE" );
3058+
3059+
3060+ZorbaCSVErrorCode MISSING_VALUE( "csv:MISSING_VALUE" );
3061+
3062+
3063+ZorbaCSVErrorCode EXTRA_VALUE( "csv:EXTRA_VALUE" );
3064
3065
3066 } // namespace csv
3067
3068 namespace dt {
3069
3070-ZorbaDateTimeErrorCode INVALID_SPECIFICATION( "INVALID_SPECIFICATION" );
3071-
3072-
3073-ZorbaDateTimeErrorCode INSUFFICIENT_BUFFER( "INSUFFICIENT_BUFFER" );
3074-
3075-
3076-ZorbaDateTimeErrorCode INVALID_VALUE( "INVALID_VALUE" );
3077-
3078-
3079-ZorbaDateTimeErrorCode LITERAL_MISMATCH( "LITERAL_MISMATCH" );
3080-
3081-
3082-ZorbaDateTimeErrorCode INCOMPLETE_DATE_OR_TIME( "INCOMPLETE_DATE_OR_TIME" );
3083-
3084-
3085-ZorbaDateTimeErrorCode INVALID_LOCALE( "INVALID_LOCALE" );
3086-
3087-
3088-ZorbaDateTimeErrorCode UNKNOWN_LOCALE( "UNKNOWN_LOCALE" );
3089-
3090-
3091-ZorbaDateTimeErrorCode UNSUPPORTED_LOCALE( "UNSUPPORTED_LOCALE" );
3092+ZorbaDateTimeErrorCode INVALID_SPECIFICATION( "dt:INVALID_SPECIFICATION" );
3093+
3094+
3095+ZorbaDateTimeErrorCode INSUFFICIENT_BUFFER( "dt:INSUFFICIENT_BUFFER" );
3096+
3097+
3098+ZorbaDateTimeErrorCode INVALID_VALUE( "dt:INVALID_VALUE" );
3099+
3100+
3101+ZorbaDateTimeErrorCode LITERAL_MISMATCH( "dt:LITERAL_MISMATCH" );
3102+
3103+
3104+ZorbaDateTimeErrorCode INCOMPLETE_DATE_OR_TIME( "dt:INCOMPLETE_DATE_OR_TIME" );
3105+
3106+
3107+ZorbaDateTimeErrorCode INVALID_LOCALE( "dt:INVALID_LOCALE" );
3108+
3109+
3110+ZorbaDateTimeErrorCode UNKNOWN_LOCALE( "dt:UNKNOWN_LOCALE" );
3111+
3112+
3113+ZorbaDateTimeErrorCode UNSUPPORTED_LOCALE( "dt:UNSUPPORTED_LOCALE" );
3114
3115
3116 } // namespace dt
3117
3118 namespace zuri {
3119
3120-ZorbaURIErrorCode CHARSET_UNKNOWN( "CHARSET_UNKNOWN" );
3121-
3122-
3123-ZorbaURIErrorCode OPAQUE_COMB_NOT_VALID( "OPAQUE_COMB_NOT_VALID" );
3124-
3125-
3126-ZorbaURIErrorCode OPAQUE_WITHOUT_SCHEME( "OPAQUE_WITHOUT_SCHEME" );
3127-
3128-
3129-ZorbaURIErrorCode INVALID_ABSOLUTE_PATH( "INVALID_ABSOLUTE_PATH" );
3130-
3131-
3132-ZorbaURIErrorCode URI_UNRESOLVED_OR_NOSTREAM( "URI_UNRESOLVED_OR_NOSTREAM" );
3133+ZorbaURIErrorCode CHARSET_UNKNOWN( "zuri:CHARSET_UNKNOWN" );
3134+
3135+
3136+ZorbaURIErrorCode OPAQUE_COMB_NOT_VALID( "zuri:OPAQUE_COMB_NOT_VALID" );
3137+
3138+
3139+ZorbaURIErrorCode OPAQUE_WITHOUT_SCHEME( "zuri:OPAQUE_WITHOUT_SCHEME" );
3140+
3141+
3142+ZorbaURIErrorCode INVALID_ABSOLUTE_PATH( "zuri:INVALID_ABSOLUTE_PATH" );
3143+
3144+
3145+ZorbaURIErrorCode URI_UNRESOLVED_OR_NOSTREAM( "zuri:URI_UNRESOLVED_OR_NOSTREAM" );
3146
3147
3148 } // namespace zuri
3149
3150=== modified file 'src/diagnostics/pregenerated/dict_en.cpp'
3151--- src/diagnostics/pregenerated/dict_en.cpp 2014-01-16 23:09:20 +0000
3152+++ src/diagnostics/pregenerated/dict_en.cpp 2014-01-21 03:30:58 +0000
3153@@ -28,517 +28,517 @@
3154 namespace dict {
3155
3156 extern entry const dict_en[] = {
3157- { "CHARSET_UNKNOWN", "\"$1\": unknown or invalid character set" },
3158- { "DUPLICATE_PREFIX", "\"$1\": duplicate prefix" },
3159- { "DUPLICATE_TYPE", "\"$1\": duplicate type name" },
3160- { "EXTRA_VALUE", "\"$1\": extra value detected on line $2" },
3161- { "FACET_VIOLATION", "$1" },
3162- { "FOAR0001", "division by zero" },
3163- { "FOAR0002", "numeric operation overflow/underflow${: 1}" },
3164- { "FOCA0001", "\"$1\": value too large for decimal" },
3165- { "FOCA0002", "$1" },
3166- { "FOCA0003", "\"$1\": value${ of type 2} too large for $3?3:{integer}" },
3167- { "FOCA0005", "NaN supplied as float/double value" },
3168- { "FOCA0006", "\"$1\": string to be cast to decimal has too many digits of precision" },
3169- { "FOCH0001", "\"$1\": invalid code point" },
3170- { "FOCH0002", "\"$1\": unsuported collation${: 2}" },
3171- { "FOCH0003", "\"$1\": unsupported normalization form" },
3172- { "FOCH0004", "\"$1\": collation does not support collation units" },
3173- { "FOCZ0001", "invalid content passed to $1: $2" },
3174- { "FODC0001", "no context document for $1() function" },
3175- { "FODC0002", "\"$1\": error retrieving resource${: 2}" },
3176- { "FODC0003", "$1 function result not guaranteed deterministic" },
3177- { "FODC0004", "\"$1\": invalid argument to fn:collection()${: 2}" },
3178- { "FODC0005", "\"$1\": invalid argument to fn:doc() or fn:doc-available()" },
3179- { "FODC0006", "invalid content passed to $1: $2" },
3180- { "FODC0007", "\"$1\": base URI passed to fn:parse() is not a valid absolute URI" },
3181- { "FODF1280", "\"$1\": invalid decimal format name for fn:format-number()" },
3182- { "FODF1310", "\"$1\": invalid picture string for decimal/integer${: 2}" },
3183- { "FODT0001", "overflow/underflow in date/time operation${: 1}" },
3184- { "FODT0002", "overflow/underflow in duration operation${: 1}" },
3185- { "FODT0003", "\"$1\": invalid timezone value (in seconds)" },
3186- { "FOER0000", "unidentifier error" },
3187- { "FOFD1340", "\"$1\": invalid \\$$2 argument for date/time${: 3}" },
3188- { "FOFD1350", "\"$1\": component specifier not available" },
3189- { "FOFL0001", "dynamic call on context-dependent function item" },
3190- { "FONS0004", "\"$1\": no namespace found for prefix" },
3191- { "FONS0005", "base-URI not defined in the static context" },
3192- { "FORG0001", "$1" },
3193- { "FORG0002", "\"$1\": invalid argument to fn:resolve-uri()${: 2}" },
3194- { "FORG0003", "fn:zero-or-one() called with a sequnce containing more than one item" },
3195- { "FORG0004", "fn:one-or-more() called with a sequence containing no items" },
3196- { "FORG0005", "fn:exactly-one() called with a sequence containing zero or more than one item" },
3197- { "FORG0006", "$1" },
3198- { "FORG0008", "\"$1\" and \"$2\": two arguments to fn:dateTime() have inconsistent timezones" },
3199- { "FORG0009", "error resolving a relative URI against a base URI in fn:resolve-uri()${: 1}" },
3200- { "FORX0001", "'$1': invalid regular expression flag" },
3201- { "FORX0002", "\"$1\": invalid regular expression${: 2}" },
3202- { "FORX0003", "\"$1\": regular expression matches zero-length string" },
3203- { "FORX0004", "\"$1\": invalid replacement string${: 2}" },
3204- { "FOTY0012", "\"$1\": element node of type $2 does not have a typed value" },
3205- { "FOTY0013", "\"$1\": function item passed as argument to fn:data()" },
3206- { "FOTY0014", "\"$1\": argument to fn:string() is a function item" },
3207- { "FOTY0015", "\"$1\": argument to fn:deep-equal() contains a function item" },
3208- { "FOUP0001", "first operand of fn:put() is not a node of a supported kind" },
3209- { "FOUP0002", "second operand of fn:put() is not a valid lexical representation of the xs:anyURI type" },
3210- { "FOUT1170", "\"$1\": error retrieving resource containing text" },
3211- { "FOUT1190", "\"$1\": can not decode resource retrieved" },
3212-#if !defined(ZORBA_NO_FULL_TEXT)
3213- { "FTDY0016", "\"$1\": invalid weight: absolute value must be in [0,1000]" },
3214-#endif
3215-#if !defined(ZORBA_NO_FULL_TEXT)
3216- { "FTDY0017", "mild-not contains StringExclude" },
3217-#endif
3218-#if !defined(ZORBA_NO_FULL_TEXT)
3219- { "FTDY0020", "${\"1\": }invalid wildcard syntax${: 2}" },
3220-#endif
3221-#if !defined(ZORBA_NO_FULL_TEXT)
3222- { "FTST0008", "\"$1\": unknown stop-word list" },
3223-#endif
3224-#if !defined(ZORBA_NO_FULL_TEXT)
3225- { "FTST0009", "\"$1\": unsupported language${ 2}" },
3226-#endif
3227-#if !defined(ZORBA_NO_FULL_TEXT)
3228- { "FTST0018", "\"$1\": unknown thesaurus" },
3229-#endif
3230-#if !defined(ZORBA_NO_FULL_TEXT)
3231- { "FTST0019", "\"$1\": match option specified more than once" },
3232-#endif
3233- { "ILLEGAL_ARRAY_SIZE", "\\$content facet for \\$array must be array with exactly 1 element" },
3234- { "ILLEGAL_BASE_TYPE", "\"$1\": illegal base-type${ for \"2\"}$3" },
3235- { "ILLEGAL_FACET", "\"$1\": illegal facet for $2" },
3236- { "ILLEGAL_FACET_VALUE", "\"$1\": illegal value for facet $2: $3" },
3237- { "ILLEGAL_KEY", "\"$1\": illegal key for $2" },
3238- { "ILLEGAL_NAMESPACE", "\"$1\": illegal explicit namespace for \\$name; if given, must match schema namespace \"$2\"" },
3239- { "ILLEGAL_PREFIX", "\"$1\": illegal prefix (must not include ':')" },
3240- { "ILLEGAL_SCHEMA", "\"$1\": illegal schema${ at location \"2\"}: [$3]: $4" },
3241- { "ILLEGAL_TYPE", "\"$1\": illegal type for $2; must be $3${ or 4}" },
3242- { "INCOMPLETE_DATE_OR_TIME", "'$1': incomplete date, time, or dateTime format" },
3243- { "INSUFFICIENT_BUFFER", "\"$1\": insufficient value to parse for \"$2\"" },
3244- { "INVALID_ABSOLUTE_PATH", "path component of absolute URI must begin with /" },
3245- { "INVALID_CSV_VALUE", "\"$1\": invalid type for value of key \"$2\"" },
3246- { "INVALID_LOCALE", "\"$1\": invalid locale" },
3247- { "INVALID_OPTION", "${\"1\": }invalid value for \"$2\" option${; 3}" },
3248- { "INVALID_OPTION", "${\"1\": }invalid value for \"$2\" option${; 3}" },
3249- { "INVALID_SPECIFICATION", "'$1': invalid % conversion specification" },
3250- { "INVALID_VALUE", "\"$1\": invalid value for conversion specification(s) %$2" },
3251- { "JNDY0003", "\"$1\": pair with the same name already exists in object" },
3252- { "JNDY0021", "$1" },
3253- { "JNSE0012", "can not serialize multiple top-level items as JSON" },
3254- { "JNSE0013", "can not serialize value as JSON: $1" },
3255- { "JNSE0014", "can not serialize a node or function item as JSON" },
3256- { "JNSE0022", "\"$1\": invalid serialization method for item type ($2)" },
3257- { "JNTY0002", "pair value returns no, or more than one, item" },
3258- { "JNTY0004", "can not atomize an $1 item: an $1 has probably been passed where an atomic value is expected (e.g., as a key, or to a function expecting an atomic item)" },
3259- { "JNTY0011", "JSON item cannot appear in content sequence of node constructor or updating expression" },
3260- { "JNTY0018", "object or array selection needs zero or one parameter" },
3261- { "JNTY0020", "$1: invalid option type for option $2 (expected $3)" },
3262- { "JNTY0021", "$1: invalid json-item() type (expected $2)" },
3263- { "JNTY0023", "$1: value of \"$2\" is not a $3" },
3264- { "JNTY0024", "$1 items do not have string value" },
3265- { "JNUP0005", "\"$1\": duplicate pair to insert" },
3266- { "JNUP0006", "\"$1\": pair to insert already exists in object" },
3267- { "JNUP0007", "\"$1\": wrong type for object/array selector in update expression" },
3268- { "JNUP0008", "$1" },
3269- { "JNUP0009", "\"$1\": duplicate pair to replace" },
3270- { "JNUP0010", "\"$1\": duplicate pair to rename" },
3271- { "JNUP0016", "$1" },
3272- { "JNUP0017", "can not replace with less or more than an item" },
3273- { "JNUP0019", "\"$1\": invalid type (content of insert expression must evaluate to a sequence of objects)" },
3274- { "LITERAL_MISMATCH", "'$1': literal character mismatched '$2'" },
3275- { "MISSING_KEY", "\"$1\": missing key${ for type \"2\"} required${ 3}" },
3276- { "MISSING_VALUE", "$1" },
3277- { "NEW_KEY_NOT_ALLOWED", "\"$1\": new key not allowed since \\$open of base-type $2 is false" },
3278- { "OPAQUE_COMB_NOT_VALID", "cannot specify opaque-part in conjunction with host/port/path/user-info/query" },
3279- { "OPAQUE_WITHOUT_SCHEME", "scheme required when specifying opaque-part" },
3280- { "SCHEMA_NOT_FOUND", "\"$1\": could not find schema${ at location \"2\"}${: 3}" },
3281- { "SENR0001", "\"$1\": can not serialize $2" },
3282- { "SEPM0004", "doctype-system parameter, or standalone parameter with a value other than \"omit\", specified" },
3283- { "SEPM0009", "omit-xml-declaration parameter is \"yes\" and $1" },
3284- { "SEPM0010", "the output method is \"xml\", the value of the undeclare-prefixes parameter is \"yes\", and the value of the version parameter is \"1.0\"" },
3285- { "SEPM0016", "\"$1\": value for parameter \"$2\" invalid${; 3}" },
3286- { "SERE0003", "serializer can't satisfy the rules for either a well-formed XML document entity or a well-formed XML external general parsed entity" },
3287- { "SERE0005", "invalid NCName character" },
3288- { "SERE0006", "\"$1\": invalid character for XML version $2" },
3289- { "SERE0008", "\"$1\": can not encode character as character reference here" },
3290- { "SERE0012", "normalization-form parameter value is fully-normalized and any relevant construct of the result begins with a combining character" },
3291- { "SERE0014", "\"#$1\": character not allowed for HTML output method" },
3292- { "SERE0015", "can not use '>' within processing instruction for HTML output method" },
3293- { "SESU0007", "\"$1\": unsupported encoding" },
3294- { "SESU0011", "\"$1\": unsupported normalization form" },
3295- { "SESU0013", "\"$1\": unsupported $2 version; supported versions are: $3" },
3296- { "TYPE_MISMATCH", "\"$1\": type does not match required type of $2${ for 3}" },
3297- { "TYPE_VIOLATION", "\"$1\": invalid value type; must be $2" },
3298- { "UNKNOWN_LOCALE", "\"$1\": unknown locale" },
3299- { "UNKNOWN_PREFIX", "\"$1\": unknown prefix" },
3300- { "UNKNOWN_TYPE", "\"$1\": unknown type" },
3301- { "UNSUPPORTED_LOCALE", "\"$1\": unsupported locale" },
3302- { "URI_UNRESOLVED_OR_NOSTREAM", "\"$1\": stream is unresolved or it is not a stream - \"$2\"" },
3303- { "XPDY0002", "$1" },
3304- { "XPDY0050", "\"$1\" cannot be treated as type $2" },
3305- { "XPST0001", "${\"1\": }undefined value${: 2}" },
3306- { "XPST0003", "invalid expression${: 1}" },
3307- { "XPST0005", "static type must not be empty-sequence()" },
3308- { "XPST0008", "$1" },
3309- { "XPST0017", "\"$1\": $2" },
3310- { "XPST0051", "$1" },
3311- { "XPST0080", "\"$1\": invalid type for \"cast\" or \"castable\" exression" },
3312- { "XPST0081", "\"$1\": can not expand prefix of lexical QName to namespace URI" },
3313- { "XPST0083", "\"$1\": not a string literal" },
3314- { "XPTY0004", "$1" },
3315- { "XPTY0018", "path expression last step must not have nodes and atomic values" },
3316- { "XPTY0019", "a non-last axis step produces non-node items" },
3317- { "XPTY0020", "context item in axis step is not a node" },
3318- { "XPTY0117", "$1" },
3319- { "XQDY0025", "\"$1\": duplicate attribute name" },
3320- { "XQDY0026", "computed processing instrucion must not contain \"?>\"" },
3321- { "XQDY0027", "\"$1\": unexpected validity property${: 2}" },
3322- { "XQDY0041", "can not cast to xs:NCName" },
3323- { "XQDY0044", "\"$1\": invalid attibute node-name" },
3324- { "XQDY0054", "${\"1\": }variable must not depend on itself" },
3325- { "XQDY0061", "invalid validate expression operand${: 1}" },
3326- { "XQDY0064", "\"XML\": invalid name expression" },
3327- { "XQDY0072", "comment must not contain \"--\" or end with \"-\"" },
3328- { "XQDY0074", "$1" },
3329- { "XQDY0084", "validated element does not have a top-level element declaration in the in-scope element declarations${: 1}" },
3330- { "XQDY0091", "\"xml:id\" encountered" },
3331- { "XQDY0092", "\"$1\": must be either \"preserve\" or \"default\"" },
3332- { "XQDY0096", "\"$1\": invalid node-name" },
3333- { "XQDY0101", "Invalid prefix and/or uri in computed namespace constructor: prefix = $1, namespace URI = $2." },
3334- { "XQDY0102", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3335- { "XQST0009", "schema import not supported" },
3336- { "XQST0012", "invalid schema definitions" },
3337- { "XQST0013", "invalid pragma content" },
3338- { "XQST0022", "namespace declaration attribute is not a URI literal" },
3339- { "XQST0031", "$1" },
3340- { "XQST0032", "multiple base URI declarations" },
3341- { "XQST0033", "\"$1\": namespace prefix already bound to \"$2\"" },
3342- { "XQST0034", "\"$1\": duplicate function declaration" },
3343- { "XQST0035", "\"$1\": name previosly imported" },
3344- { "XQST0036", "$1" },
3345- { "XQST0038", "multiple default collation declarations" },
3346- { "XQST0039", "\"$1\": duplicate parameter name" },
3347- { "XQST0040", "\"$1\": non-distinct expanded attribute QName" },
3348- { "XQST0045", "$1" },
3349- { "XQST0046", "${\"1\": }invalid URI literal${: 2}" },
3350- { "XQST0047", "\"$1\": duplicate target namespace" },
3351- { "XQST0048", "\"$1\": QName not in library namespace" },
3352- { "XQST0049", "\"$1\": duplicate variable declaration" },
3353- { "XQST0052", "\"$1\": not defined as simple type" },
3354- { "XQST0054", "${\"1\": }variable must not depend on itself" },
3355- { "XQST0055", "multiple copy-namespaces declarations" },
3356- { "XQST0057", "schema import with empty target namespace" },
3357- { "XQST0058", "duplicate import of schema with target namespace \"$1\"" },
3358- { "XQST0059", "$1" },
3359- { "XQST0060", "\"$1\": function name is in no namespace" },
3360- { "XQST0065", "multiple ordering mode declarations" },
3361- { "XQST0066", "multiple element/type/function namespace declarations" },
3362- { "XQST0067", "multiple construction declarations" },
3363- { "XQST0068", "multiple boundary-space declarations" },
3364- { "XQST0069", "multiple empty order declarations" },
3365- { "XQST0070", "$1" },
3366- { "XQST0071", "\"$1\": duplicate namespace declaration attribute" },
3367- { "XQST0076", "\"$1\": unknown collation" },
3368- { "XQST0079", "unknown pragma or empty expression" },
3369- { "XQST0085", "namespace URI is empty" },
3370- { "XQST0087", "\"$1\": invalid encoding" },
3371- { "XQST0088", "empty target namespace in module import or module declaration" },
3372- { "XQST0089", "\"$1\": duplicate variable name" },
3373- { "XQST0090", "\"$1\": invalid character reference in XML $2" },
3374- { "XQST0093", "\"$1\": module must not depend on itself" },
3375- { "XQST0094", "\"$1\": grouping variable not defined in the same flwor expression as the group-by clause" },
3376- { "XQST0097", "\"$1\": illegal value for decimal format property \"$2\"${: 3}" },
3377- { "XQST0098", "\"$1\": value of properties \"$1\" and \"$2\" for characters used a in picture string is the same but must be distinct" },
3378- { "XQST0099", "module contains more than one context item declaration" },
3379- { "XQST0103", "$1: non-distinct variable in window clause" },
3380- { "XQST0106", "$1" },
3381- { "XQST0111", "$1" },
3382- { "XQST0113", "context item declaration with initializing expression not allowed in library module" },
3383- { "XQST0114", "\"$1\": duplicate decimal format property" },
3384- { "XQST0116", "$1" },
3385- { "XQST0120", "\"$1\": feature not supported" },
3386- { "XQST0122", "$1" },
3387- { "XQST0123", "$1" },
3388- { "XQST0126", "impossible to require all extension features" },
3389- { "XQST0127", "$1 : impossible to require and prohibit at the same time" },
3390- { "XQST0128", "\"$1\": unable to disable a supported feature" },
3391- { "XQTY0024", "element constructor content sequence must not have an attribute node following a non-attribute node" },
3392- { "XQTY0030", "validate argument must be exactly one document or element node" },
3393- { "XQTY0086", "typed value of copied element or attribute node is namespace-sensitive when construction mode is preserve and copy-namespaces mode is no-preserve" },
3394- { "XQTY0105", "element constructor must not contain a function item" },
3395- { "XSST0001", "\"$1\": function cannot be declared as both updating and sequential" },
3396- { "XSST0002", "\"$1\": function declared sequential but has updating body" },
3397- { "XSST0003", "\"$1\": function declared updating but has sequential body" },
3398- { "XSST0004", "\"$1\": function declared nonsequential but has sequential body" },
3399- { "XSST0005", "expression cannot be both updating and sequential" },
3400- { "XSST0006", "sequential expression not allowed here" },
3401- { "XSST0007", "\"$1\": variable not assignable" },
3402- { "XSST0008", "\"while\" statement with non-sequential body" },
3403- { "XSST0009", "\"break loop\" statement not inside while statement" },
3404- { "XSST0010", "\"continue loop\" statement not inside while statement" },
3405- { "XTDE1310", "\"$1\": picture string does not satisfy format-number() function rules" },
3406- { "XUDY0009", "node has no parent in \"replace\" expression (without \"value of\")" },
3407- { "XUDY0014", "\"modify\" can not modify node not created by \"copy\"" },
3408- { "XUDY0015", "node is target of multiple \"rename\" expressions in same query" },
3409- { "XUDY0016", "node is target of multiple \"replace\" expressions (without \"value of\") in same query" },
3410- { "XUDY0017", "node is target of multiple \"replace value of\" expressions in same query" },
3411- { "XUDY0018", "\"$1\": function declared external, non-updating returns non-empty pending update list" },
3412- { "XUDY0019", "\"$1\": function declared external, updating returns non-empty data model instance" },
3413- { "XUDY0021", "$1${ 2}" },
3414- { "XUDY0023", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3415- { "XUDY0024", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3416- { "XUDY0027", "target expression is empty sequence" },
3417- { "XUDY0029", "node has no parent in \"insert\" expression (with \"before\" or \"after\")" },
3418- { "XUDY0030", "insertion of attrhbute node before or after document node child" },
3419- { "XUDY0031", "\"$1\": same URI used in multiple calls to fn:put() in same snapshot" },
3420- { "XUST0001", "$1" },
3421- { "XUST0002", "simple expression not allowed here" },
3422- { "XUST0003", "multiple revalidation declarations" },
3423- { "XUST0028", "\"$1\": function can not be updating with a return type" },
3424- { "XUTY0004", "attribute node follows non-attribute node" },
3425- { "XUTY0005", "target expression not a single element or document node" },
3426- { "XUTY0006", "target expression not a single element, text, comment, or processing instruction node" },
3427- { "XUTY0007", "target expression does not return a sequence of zero or more nodes" },
3428- { "XUTY0008", "target expression not a single element, attribute, text, comment, or processing instruction node" },
3429- { "XUTY0010", "replacement sequence does not consist of zero or more element, text, comment, or processing instruction nodes" },
3430- { "XUTY0011", "replacement sequence does not consist of zero or more attribute nodes" },
3431- { "XUTY0012", "multiple elements, attributes, or processing-instruction nodes returned" },
3432- { "XUTY0013", "source expression of \"copy\" clause must return a single node or json-item" },
3433- { "XUTY0022", "insertion of attribute node into document node" },
3434- { "ZAPI0002", "XQuery compilation failed${: 1}" },
3435- { "ZAPI0003", "XQuery not compiled" },
3436- { "ZAPI0004", "XQuery already compiled" },
3437- { "ZAPI0005", "XQuery already executing" },
3438- { "ZAPI0006", "XQuery already closed" },
3439- { "ZAPI0007", "cannot serialize pul" },
3440- { "ZAPI0008", "can not execute a non-updating XQuery" },
3441- { "ZAPI0009", "XQuery not compiled in debug mode" },
3442- { "ZAPI0011", "\"$1\": undeclared variable" },
3443- { "ZAPI0014", "\"$1\": invalid argument${: 2}" },
3444- { "ZAPI0015", "\"$1\": createModule() function not found${: 2}" },
3445- { "ZAPI0019", "\"$1\": external module already registered" },
3446- { "ZAPI0020", "\"$1\": document already exists in store" },
3447- { "ZAPI0021", "\"$1\": item to add to the store is not an XML document node" },
3448- { "ZAPI0023", "non-atomic value can not be assigned to the context size" },
3449- { "ZAPI0024", "\"$1\": wrong type for context size value (must be integer)" },
3450- { "ZAPI0025", "non-atomic value can not be assigned to the context position" },
3451- { "ZAPI0026", "\"$1\": wrong type for context position value (must be integer)" },
3452- { "ZAPI0027", "cannot update dynamic context with iterators" },
3453- { "ZAPI0028", "\"$1\": invalid node URI" },
3454- { "ZAPI0029", "\"$1\": reference already present in the store" },
3455- { "ZAPI0030", "node has no current reference" },
3456- { "ZAPI0039", "XQuery has iterator already" },
3457- { "ZAPI0040", "iterator is not open" },
3458- { "ZAPI0041", "iterator is already open" },
3459- { "ZAPI0042", "iterator is closed" },
3460- { "ZAPI0043", "cannot serialize JSON item using current output method" },
3461- { "ZAPI0045", "cannot serialize sequence containing both JSON and XML items" },
3462- { "ZAPI0070", "\"$1\": invalid serialization method for SAX" },
3463- { "ZAPI0080", "can not retrieve reference for a JSON object or array that is not in a collection" },
3464- { "ZAPI0090", "non root element cannot be validated in place" },
3465- { "ZCSE0001", "\"$1\": nonexistent input field" },
3466- { "ZCSE0002", "\"$1\": incompatible input field${: type=2}${, class=3}" },
3467- { "ZCSE0003", "\"$1\": unrecognized class field" },
3468- { "ZCSE0004", "\"$1\": unresolved field reference" },
3469- { "ZCSE0005", "class version for \"$1\" ($2) is too new; supported version is $3" },
3470- { "ZCSE0006", "class version for \"$1\" ($2) is too old; minimum supported version is $3; use Zorba 0x$4 instead" },
3471- { "ZCSE0007", "input archive used for out serialization" },
3472- { "ZCSE0008", "output archive used for in serialization" },
3473- { "ZCSE0009", "\"$1\": class not serializable" },
3474- { "ZCSE0010", "\"$1\": item type not serializable; only atomic, node, function, and error items are supported" },
3475- { "ZCSE0011", "input archive not Zorba archive" },
3476- { "ZCSE0012", "\"$1\": incompatible archive version; expected \"$2\"" },
3477- { "ZCSE0013", "failed to load pre-compiled query${: 1}" },
3478- { "ZCSE0014", "cannot save execution plan: infinite circular dependencies" },
3479- { "ZCSE0015", "cannot load execution plan: incompatible between 32/64 bits or little/big-endian" },
3480- { "ZCSE0016", "cannot load execution plan saved from release mode Zorba into debug mode Zorba" },
3481- { "ZCSE0017", "cannot load execution plan saved from debug mode Zorba into release mode Zorba" },
3482- { "ZDDY0001", "\"$1\": collection not declared" },
3483- { "ZDDY0002", "\"$1\": collection already exists" },
3484- { "ZDDY0003", "\"$1\": collection does not exist" },
3485- { "ZDDY0004", "\"$1\": can not update constant collection" },
3486- { "ZDDY0005", "\"$1\": illegal insert into append-only collection" },
3487- { "ZDDY0006", "\"$1\": illegal insert into queue collection" },
3488- { "ZDDY0007", "\"$1\": illegal delete from append-only collection" },
3489- { "ZDDY0008", "\"$1\": illegal delete from queue collection" },
3490- { "ZDDY0009", "\"$1\": not all nodes to delete are at the beginning of this queue collection" },
3491- { "ZDDY0010", "\"$1\": illegal update of read-only nodes" },
3492- { "ZDDY0011", "\"$1\": collection does not contain node" },
3493- { "ZDDY0012", "\"$1\": illegal $2 into unordered collection" },
3494- { "ZDDY0013", "\"$1\": can not delete collection because indexes reference it" },
3495- { "ZDDY0014", "\"$1\": can not delete collection because integrity constraints reference it" },
3496- { "ZDDY0015", "\"$1\": can not delete collection because there are references to its nodes" },
3497- { "ZDDY0016", "\"$1\": multiple attemps to create a collection in the same snapshot" },
3498- { "ZDDY0017", "node does not belong to any collection" },
3499- { "ZDDY0018", "all nodes must be in same collection" },
3500- { "ZDDY0019", "\"$1\": iterator on collection is not open" },
3501- { "ZDDY0020", "\"$1\": index domain expression yields nodes that are not in collection" },
3502- { "ZDDY0021", "\"$1\": undeclared index" },
3503- { "ZDDY0022", "\"$1\": index already exists" },
3504- { "ZDDY0023", "\"$1\": index does not exist" },
3505- { "ZDDY0024", "\"$1\": index uniqueness violation" },
3506- { "ZDDY0025", "\"$1\": invalid number of arguments to $2 operation; given $3 expected $4" },
3507- { "ZDDY0026", "\"$1\": index range probe not allowed" },
3508- { "ZDDY0027", "\"$1\": index multiple creates" },
3509- { "ZDDY0028", "\"$1\": index domain has duplicate nodes" },
3510- { "ZDDY0029", "\"$1\": index point-general probe not allowed" },
3511- { "ZDDY0030", "\"$1\": index range-general probe not allowed" },
3512- { "ZDDY0031", "\"$1\": integrity constraint is not declared" },
3513- { "ZDDY0032", "\"$1\": integrity constraint is not activated" },
3514- { "ZDDY0033", "\"$1\": integrity constraint not met for collection \"$2\"" },
3515- { "ZDDY0034", "\"$1\": index range-value probe has search keys with incompatible types" },
3516- { "ZDDY0035", "\"$1\": index inserting more than one key not allowed for general index" },
3517- { "ZDDY0036", "attempt to delete non-root node from collection \"$1\"" },
3518- { "ZDDY0037", "\"$1\": illegal edit in append-only collection" },
3519- { "ZDDY0038", "\"$1\": illegal edit from queue collection" },
3520- { "ZDDY0039", "attempt to edit non-root node in collection \"$1\"" },
3521- { "ZDDY0040", "attempt to edit an item with a template of a different kind (for example an object with a node)." },
3522- { "ZDDY0041", "\"$1\": collection was modified while reading" },
3523- { "ZDDY0042", "\"$1\": map insertion requires $2 to belong to a collection" },
3524- { "ZDDY0043", "\"$1\": invalid type for option \"$2\"" },
3525- { "ZDST0001", "\"$1\": collection already declared" },
3526- { "ZDST0002", "\"$1\": collection already imported into module \"$2\"" },
3527- { "ZDST0003", "\"$1\": collection declaration not allowed in main module" },
3528- { "ZDST0004", "collection multiple property values" },
3529- { "ZDST0006", "\"$1\": invalid annotation for collection \"$2\"" },
3530- { "ZDST0007", "\"$1\": collection declaration in foreign module" },
3531- { "ZDST0021", "\"$1\": index already declared" },
3532- { "ZDST0022", "\"$1\": index already imported into module \"$2\"" },
3533- { "ZDST0023", "\"$1\": index declaration not allowed in main module" },
3534- { "ZDST0024", "index multiple property values" },
3535- { "ZDST0025", "\"$1\": index cannot be declared as unique" },
3536- { "ZDST0026", "index invalid property value" },
3537- { "ZDST0027", "\"$1\": $2" },
3538- { "ZDST0028", "\"$1\": index not deterministic" },
3539- { "ZDST0029", "\"$1\": index invalid data source" },
3540- { "ZDST0030", "\"$1\": index non-constant data source" },
3541- { "ZDST0031", "\"$1\": index has free vars" },
3542- { "ZDST0032", "\"$1\": index references context item" },
3543- { "ZDST0033", "\"$1\": index non-simple expression" },
3544- { "ZDST0034", "\"$1\": index can not do automatic maintenance" },
3545- { "ZDST0035", "\"$1\": number of key expressions for general indexes is restricted to one expression" },
3546- { "ZDST0036", "\"$1\": index declaration in foreign module" },
3547- { "ZDST0041", "\"$1\": integrity constraint already declared" },
3548- { "ZDST0044", "\"$1\": integrity constraint declaration not allowed in main module" },
3549- { "ZDST0048", "\"$1\": integrity constraint declaration in foreign module" },
3550- { "ZDST0060", "\"$1\": feature not supported; $2" },
3551- { "ZDTY0001", "\"$1\": invalid item type in collection \"$2\"" },
3552- { "ZDTY0010", "non-node item in domain expression of index $1" },
3553- { "ZDTY0011", "item type \"$1\" does not match declared type \"$2\" for key expression of index $3" },
3554- { "ZDTY0012", "\"$1\": general range index key item has type for which no ordering relationship exists" },
3555+ { "csv:EXTRA_VALUE", "\"$1\": extra value detected on line $2" },
3556+ { "csv:INVALID_OPTION", "${\"1\": }invalid value for \"$2\" option${; 3}" },
3557+ { "csv:INVALID_VALUE", "\"$1\": invalid type for value of key \"$2\"" },
3558+ { "csv:MISSING_VALUE", "$1" },
3559+ { "dt:INCOMPLETE_DATE_OR_TIME", "'$1': incomplete date, time, or dateTime format" },
3560+ { "dt:INSUFFICIENT_BUFFER", "\"$1\": insufficient value to parse for \"$2\"" },
3561+ { "dt:INVALID_LOCALE", "\"$1\": invalid locale" },
3562+ { "dt:INVALID_SPECIFICATION", "'$1': invalid % conversion specification" },
3563+ { "dt:INVALID_VALUE", "\"$1\": invalid value for conversion specification(s) %$2" },
3564+ { "dt:LITERAL_MISMATCH", "'$1': literal character mismatched '$2'" },
3565+ { "dt:UNKNOWN_LOCALE", "\"$1\": unknown locale" },
3566+ { "dt:UNSUPPORTED_LOCALE", "\"$1\": unsupported locale" },
3567+ { "err:FOAR0001", "division by zero" },
3568+ { "err:FOAR0002", "numeric operation overflow/underflow${: 1}" },
3569+ { "err:FOCA0001", "\"$1\": value too large for decimal" },
3570+ { "err:FOCA0002", "$1" },
3571+ { "err:FOCA0003", "\"$1\": value${ of type 2} too large for $3?3:{integer}" },
3572+ { "err:FOCA0005", "NaN supplied as float/double value" },
3573+ { "err:FOCA0006", "\"$1\": string to be cast to decimal has too many digits of precision" },
3574+ { "err:FOCH0001", "\"$1\": invalid code point" },
3575+ { "err:FOCH0002", "\"$1\": unsuported collation${: 2}" },
3576+ { "err:FOCH0003", "\"$1\": unsupported normalization form" },
3577+ { "err:FOCH0004", "\"$1\": collation does not support collation units" },
3578+ { "err:FOCZ0001", "invalid content passed to $1: $2" },
3579+ { "err:FODC0001", "no context document for $1() function" },
3580+ { "err:FODC0002", "\"$1\": error retrieving resource${: 2}" },
3581+ { "err:FODC0003", "$1 function result not guaranteed deterministic" },
3582+ { "err:FODC0004", "\"$1\": invalid argument to fn:collection()${: 2}" },
3583+ { "err:FODC0005", "\"$1\": invalid argument to fn:doc() or fn:doc-available()" },
3584+ { "err:FODC0006", "invalid content passed to $1: $2" },
3585+ { "err:FODC0007", "\"$1\": base URI passed to fn:parse() is not a valid absolute URI" },
3586+ { "err:FODF1280", "\"$1\": invalid decimal format name for fn:format-number()" },
3587+ { "err:FODF1310", "\"$1\": invalid picture string for decimal/integer${: 2}" },
3588+ { "err:FODT0001", "overflow/underflow in date/time operation${: 1}" },
3589+ { "err:FODT0002", "overflow/underflow in duration operation${: 1}" },
3590+ { "err:FODT0003", "\"$1\": invalid timezone value (in seconds)" },
3591+ { "err:FOER0000", "unidentifier error" },
3592+ { "err:FOFD1340", "\"$1\": invalid \\$$2 argument for date/time${: 3}" },
3593+ { "err:FOFD1350", "\"$1\": component specifier not available" },
3594+ { "err:FOFL0001", "dynamic call on context-dependent function item" },
3595+ { "err:FONS0004", "\"$1\": no namespace found for prefix" },
3596+ { "err:FONS0005", "base-URI not defined in the static context" },
3597+ { "err:FORG0001", "$1" },
3598+ { "err:FORG0002", "\"$1\": invalid argument to fn:resolve-uri()${: 2}" },
3599+ { "err:FORG0003", "fn:zero-or-one() called with a sequnce containing more than one item" },
3600+ { "err:FORG0004", "fn:one-or-more() called with a sequence containing no items" },
3601+ { "err:FORG0005", "fn:exactly-one() called with a sequence containing zero or more than one item" },
3602+ { "err:FORG0006", "$1" },
3603+ { "err:FORG0008", "\"$1\" and \"$2\": two arguments to fn:dateTime() have inconsistent timezones" },
3604+ { "err:FORG0009", "error resolving a relative URI against a base URI in fn:resolve-uri()${: 1}" },
3605+ { "err:FORX0001", "'$1': invalid regular expression flag" },
3606+ { "err:FORX0002", "\"$1\": invalid regular expression${: 2}" },
3607+ { "err:FORX0003", "\"$1\": regular expression matches zero-length string" },
3608+ { "err:FORX0004", "\"$1\": invalid replacement string${: 2}" },
3609+ { "err:FOTY0012", "\"$1\": element node of type $2 does not have a typed value" },
3610+ { "err:FOTY0013", "\"$1\": function item passed as argument to fn:data()" },
3611+ { "err:FOTY0014", "\"$1\": argument to fn:string() is a function item" },
3612+ { "err:FOTY0015", "\"$1\": argument to fn:deep-equal() contains a function item" },
3613+ { "err:FOUP0001", "first operand of fn:put() is not a node of a supported kind" },
3614+ { "err:FOUP0002", "second operand of fn:put() is not a valid lexical representation of the xs:anyURI type" },
3615+ { "err:FOUT1170", "\"$1\": error retrieving resource containing text" },
3616+ { "err:FOUT1190", "\"$1\": can not decode resource retrieved" },
3617+#if !defined(ZORBA_NO_FULL_TEXT)
3618+ { "err:FTDY0016", "\"$1\": invalid weight: absolute value must be in [0,1000]" },
3619+#endif
3620+#if !defined(ZORBA_NO_FULL_TEXT)
3621+ { "err:FTDY0017", "mild-not contains StringExclude" },
3622+#endif
3623+#if !defined(ZORBA_NO_FULL_TEXT)
3624+ { "err:FTDY0020", "${\"1\": }invalid wildcard syntax${: 2}" },
3625+#endif
3626+#if !defined(ZORBA_NO_FULL_TEXT)
3627+ { "err:FTST0008", "\"$1\": unknown stop-word list" },
3628+#endif
3629+#if !defined(ZORBA_NO_FULL_TEXT)
3630+ { "err:FTST0009", "\"$1\": unsupported language${ 2}" },
3631+#endif
3632+#if !defined(ZORBA_NO_FULL_TEXT)
3633+ { "err:FTST0018", "\"$1\": unknown thesaurus" },
3634+#endif
3635+#if !defined(ZORBA_NO_FULL_TEXT)
3636+ { "err:FTST0019", "\"$1\": match option specified more than once" },
3637+#endif
3638+ { "err:SENR0001", "\"$1\": can not serialize $2" },
3639+ { "err:SEPM0004", "doctype-system parameter, or standalone parameter with a value other than \"omit\", specified" },
3640+ { "err:SEPM0009", "omit-xml-declaration parameter is \"yes\" and $1" },
3641+ { "err:SEPM0010", "the output method is \"xml\", the value of the undeclare-prefixes parameter is \"yes\", and the value of the version parameter is \"1.0\"" },
3642+ { "err:SEPM0016", "\"$1\": value for parameter \"$2\" invalid${; 3}" },
3643+ { "err:SERE0003", "serializer can't satisfy the rules for either a well-formed XML document entity or a well-formed XML external general parsed entity" },
3644+ { "err:SERE0005", "invalid NCName character" },
3645+ { "err:SERE0006", "\"$1\": invalid character for XML version $2" },
3646+ { "err:SERE0008", "\"$1\": can not encode character as character reference here" },
3647+ { "err:SERE0012", "normalization-form parameter value is fully-normalized and any relevant construct of the result begins with a combining character" },
3648+ { "err:SERE0014", "\"#$1\": character not allowed for HTML output method" },
3649+ { "err:SERE0015", "can not use '>' within processing instruction for HTML output method" },
3650+ { "err:SESU0007", "\"$1\": unsupported encoding" },
3651+ { "err:SESU0011", "\"$1\": unsupported normalization form" },
3652+ { "err:SESU0013", "\"$1\": unsupported $2 version; supported versions are: $3" },
3653+ { "err:XPDY0002", "$1" },
3654+ { "err:XPDY0050", "\"$1\" cannot be treated as type $2" },
3655+ { "err:XPST0001", "${\"1\": }undefined value${: 2}" },
3656+ { "err:XPST0003", "invalid expression${: 1}" },
3657+ { "err:XPST0005", "static type must not be empty-sequence()" },
3658+ { "err:XPST0008", "$1" },
3659+ { "err:XPST0017", "\"$1\": $2" },
3660+ { "err:XPST0051", "$1" },
3661+ { "err:XPST0080", "\"$1\": invalid type for \"cast\" or \"castable\" exression" },
3662+ { "err:XPST0081", "\"$1\": can not expand prefix of lexical QName to namespace URI" },
3663+ { "err:XPST0083", "\"$1\": not a string literal" },
3664+ { "err:XPTY0004", "$1" },
3665+ { "err:XPTY0018", "path expression last step must not have nodes and atomic values" },
3666+ { "err:XPTY0019", "a non-last axis step produces non-node items" },
3667+ { "err:XPTY0020", "context item in axis step is not a node" },
3668+ { "err:XPTY0117", "$1" },
3669+ { "err:XQDY0025", "\"$1\": duplicate attribute name" },
3670+ { "err:XQDY0026", "computed processing instrucion must not contain \"?>\"" },
3671+ { "err:XQDY0027", "\"$1\": unexpected validity property${: 2}" },
3672+ { "err:XQDY0041", "can not cast to xs:NCName" },
3673+ { "err:XQDY0044", "\"$1\": invalid attibute node-name" },
3674+ { "err:XQDY0054", "${\"1\": }variable must not depend on itself" },
3675+ { "err:XQDY0061", "invalid validate expression operand${: 1}" },
3676+ { "err:XQDY0064", "\"XML\": invalid name expression" },
3677+ { "err:XQDY0072", "comment must not contain \"--\" or end with \"-\"" },
3678+ { "err:XQDY0074", "$1" },
3679+ { "err:XQDY0084", "validated element does not have a top-level element declaration in the in-scope element declarations${: 1}" },
3680+ { "err:XQDY0091", "\"xml:id\" encountered" },
3681+ { "err:XQDY0092", "\"$1\": must be either \"preserve\" or \"default\"" },
3682+ { "err:XQDY0096", "\"$1\": invalid node-name" },
3683+ { "err:XQDY0101", "Invalid prefix and/or uri in computed namespace constructor: prefix = $1, namespace URI = $2." },
3684+ { "err:XQDY0102", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3685+ { "err:XQST0009", "schema import not supported" },
3686+ { "err:XQST0012", "invalid schema definitions" },
3687+ { "err:XQST0013", "invalid pragma content" },
3688+ { "err:XQST0022", "namespace declaration attribute is not a URI literal" },
3689+ { "err:XQST0031", "$1" },
3690+ { "err:XQST0032", "multiple base URI declarations" },
3691+ { "err:XQST0033", "\"$1\": namespace prefix already bound to \"$2\"" },
3692+ { "err:XQST0034", "\"$1\": duplicate function declaration" },
3693+ { "err:XQST0035", "\"$1\": name previosly imported" },
3694+ { "err:XQST0036", "$1" },
3695+ { "err:XQST0038", "multiple default collation declarations" },
3696+ { "err:XQST0039", "\"$1\": duplicate parameter name" },
3697+ { "err:XQST0040", "\"$1\": non-distinct expanded attribute QName" },
3698+ { "err:XQST0045", "$1" },
3699+ { "err:XQST0046", "${\"1\": }invalid URI literal${: 2}" },
3700+ { "err:XQST0047", "\"$1\": duplicate target namespace" },
3701+ { "err:XQST0048", "\"$1\": QName not in library namespace" },
3702+ { "err:XQST0049", "\"$1\": duplicate variable declaration" },
3703+ { "err:XQST0052", "\"$1\": not defined as simple type" },
3704+ { "err:XQST0054", "${\"1\": }variable must not depend on itself" },
3705+ { "err:XQST0055", "multiple copy-namespaces declarations" },
3706+ { "err:XQST0057", "schema import with empty target namespace" },
3707+ { "err:XQST0058", "duplicate import of schema with target namespace \"$1\"" },
3708+ { "err:XQST0059", "$1" },
3709+ { "err:XQST0060", "\"$1\": function name is in no namespace" },
3710+ { "err:XQST0065", "multiple ordering mode declarations" },
3711+ { "err:XQST0066", "multiple element/type/function namespace declarations" },
3712+ { "err:XQST0067", "multiple construction declarations" },
3713+ { "err:XQST0068", "multiple boundary-space declarations" },
3714+ { "err:XQST0069", "multiple empty order declarations" },
3715+ { "err:XQST0070", "$1" },
3716+ { "err:XQST0071", "\"$1\": duplicate namespace declaration attribute" },
3717+ { "err:XQST0076", "\"$1\": unknown collation" },
3718+ { "err:XQST0079", "unknown pragma or empty expression" },
3719+ { "err:XQST0085", "namespace URI is empty" },
3720+ { "err:XQST0087", "\"$1\": invalid encoding" },
3721+ { "err:XQST0088", "empty target namespace in module import or module declaration" },
3722+ { "err:XQST0089", "\"$1\": duplicate variable name" },
3723+ { "err:XQST0090", "\"$1\": invalid character reference in XML $2" },
3724+ { "err:XQST0093", "\"$1\": module must not depend on itself" },
3725+ { "err:XQST0094", "\"$1\": grouping variable not defined in the same flwor expression as the group-by clause" },
3726+ { "err:XQST0097", "\"$1\": illegal value for decimal format property \"$2\"${: 3}" },
3727+ { "err:XQST0098", "\"$1\": value of properties \"$1\" and \"$2\" for characters used a in picture string is the same but must be distinct" },
3728+ { "err:XQST0099", "module contains more than one context item declaration" },
3729+ { "err:XQST0103", "$1: non-distinct variable in window clause" },
3730+ { "err:XQST0106", "$1" },
3731+ { "err:XQST0111", "$1" },
3732+ { "err:XQST0113", "context item declaration with initializing expression not allowed in library module" },
3733+ { "err:XQST0114", "\"$1\": duplicate decimal format property" },
3734+ { "err:XQST0116", "$1" },
3735+ { "err:XQST0120", "\"$1\": feature not supported" },
3736+ { "err:XQST0122", "$1" },
3737+ { "err:XQST0123", "$1" },
3738+ { "err:XQST0126", "impossible to require all extension features" },
3739+ { "err:XQST0127", "$1 : impossible to require and prohibit at the same time" },
3740+ { "err:XQST0128", "\"$1\": unable to disable a supported feature" },
3741+ { "err:XQTY0024", "element constructor content sequence must not have an attribute node following a non-attribute node" },
3742+ { "err:XQTY0030", "validate argument must be exactly one document or element node" },
3743+ { "err:XQTY0086", "typed value of copied element or attribute node is namespace-sensitive when construction mode is preserve and copy-namespaces mode is no-preserve" },
3744+ { "err:XQTY0105", "element constructor must not contain a function item" },
3745+ { "err:XTDE1310", "\"$1\": picture string does not satisfy format-number() function rules" },
3746+ { "err:XUDY0009", "node has no parent in \"replace\" expression (without \"value of\")" },
3747+ { "err:XUDY0014", "\"modify\" can not modify node not created by \"copy\"" },
3748+ { "err:XUDY0015", "node is target of multiple \"rename\" expressions in same query" },
3749+ { "err:XUDY0016", "node is target of multiple \"replace\" expressions (without \"value of\") in same query" },
3750+ { "err:XUDY0017", "node is target of multiple \"replace value of\" expressions in same query" },
3751+ { "err:XUDY0018", "\"$1\": function declared external, non-updating returns non-empty pending update list" },
3752+ { "err:XUDY0019", "\"$1\": function declared external, updating returns non-empty data model instance" },
3753+ { "err:XUDY0021", "$1${ 2}" },
3754+ { "err:XUDY0023", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3755+ { "err:XUDY0024", "\"$1\": uri causes namespace binding conflict: prefix $2 already bound to $3" },
3756+ { "err:XUDY0027", "target expression is empty sequence" },
3757+ { "err:XUDY0029", "node has no parent in \"insert\" expression (with \"before\" or \"after\")" },
3758+ { "err:XUDY0030", "insertion of attrhbute node before or after document node child" },
3759+ { "err:XUDY0031", "\"$1\": same URI used in multiple calls to fn:put() in same snapshot" },
3760+ { "err:XUST0001", "$1" },
3761+ { "err:XUST0002", "simple expression not allowed here" },
3762+ { "err:XUST0003", "multiple revalidation declarations" },
3763+ { "err:XUST0028", "\"$1\": function can not be updating with a return type" },
3764+ { "err:XUTY0004", "attribute node follows non-attribute node" },
3765+ { "err:XUTY0005", "target expression not a single element or document node" },
3766+ { "err:XUTY0006", "target expression not a single element, text, comment, or processing instruction node" },
3767+ { "err:XUTY0007", "target expression does not return a sequence of zero or more nodes" },
3768+ { "err:XUTY0008", "target expression not a single element, attribute, text, comment, or processing instruction node" },
3769+ { "err:XUTY0010", "replacement sequence does not consist of zero or more element, text, comment, or processing instruction nodes" },
3770+ { "err:XUTY0011", "replacement sequence does not consist of zero or more attribute nodes" },
3771+ { "err:XUTY0012", "multiple elements, attributes, or processing-instruction nodes returned" },
3772+ { "err:XUTY0013", "source expression of \"copy\" clause must return a single node or json-item" },
3773+ { "err:XUTY0022", "insertion of attribute node into document node" },
3774+ { "jerr:JNDY0003", "\"$1\": pair with the same name already exists in object" },
3775+ { "jerr:JNDY0021", "$1" },
3776+ { "jerr:JNSE0012", "can not serialize multiple top-level items as JSON" },
3777+ { "jerr:JNSE0013", "can not serialize value as JSON: $1" },
3778+ { "jerr:JNSE0014", "can not serialize a node or function item as JSON" },
3779+ { "jerr:JNSE0022", "\"$1\": invalid serialization method for item type ($2)" },
3780+ { "jerr:JNTY0002", "pair value returns no, or more than one, item" },
3781+ { "jerr:JNTY0004", "can not atomize an $1 item: an $1 has probably been passed where an atomic value is expected (e.g., as a key, or to a function expecting an atomic item)" },
3782+ { "jerr:JNTY0011", "JSON item cannot appear in content sequence of node constructor or updating expression" },
3783+ { "jerr:JNTY0018", "object or array selection needs zero or one parameter" },
3784+ { "jerr:JNTY0020", "$1: invalid option type for option $2 (expected $3)" },
3785+ { "jerr:JNTY0021", "$1: invalid json-item() type (expected $2)" },
3786+ { "jerr:JNTY0023", "$1: value of \"$2\" is not a $3" },
3787+ { "jerr:JNTY0024", "$1 items do not have string value" },
3788+ { "jerr:JNUP0005", "\"$1\": duplicate pair to insert" },
3789+ { "jerr:JNUP0006", "\"$1\": pair to insert already exists in object" },
3790+ { "jerr:JNUP0007", "\"$1\": wrong type for object/array selector in update expression" },
3791+ { "jerr:JNUP0008", "$1" },
3792+ { "jerr:JNUP0009", "\"$1\": duplicate pair to replace" },
3793+ { "jerr:JNUP0010", "\"$1\": duplicate pair to rename" },
3794+ { "jerr:JNUP0016", "$1" },
3795+ { "jerr:JNUP0017", "can not replace with less or more than an item" },
3796+ { "jerr:JNUP0019", "\"$1\": invalid type (content of insert expression must evaluate to a sequence of objects)" },
3797+ { "jse:DUPLICATE_PREFIX", "\"$1\": duplicate prefix" },
3798+ { "jse:DUPLICATE_TYPE", "\"$1\": duplicate type name" },
3799+ { "jse:FACET_VIOLATION", "$1" },
3800+ { "jse:ILLEGAL_ARRAY_SIZE", "\\$content facet for \\$array must be array with exactly 1 element" },
3801+ { "jse:ILLEGAL_BASE_TYPE", "\"$1\": illegal base-type${ for \"2\"}$3" },
3802+ { "jse:ILLEGAL_FACET", "\"$1\": illegal facet for $2" },
3803+ { "jse:ILLEGAL_FACET_VALUE", "\"$1\": illegal value for facet $2: $3" },
3804+ { "jse:ILLEGAL_KEY", "\"$1\": illegal key for $2" },
3805+ { "jse:ILLEGAL_NAMESPACE", "\"$1\": illegal explicit namespace for \\$name; if given, must match schema namespace \"$2\"" },
3806+ { "jse:ILLEGAL_PREFIX", "\"$1\": illegal prefix (must not include ':')" },
3807+ { "jse:ILLEGAL_SCHEMA", "\"$1\": illegal schema${ at location \"2\"}: [$3]: $4" },
3808+ { "jse:ILLEGAL_TYPE", "\"$1\": illegal type for $2; must be $3${ or 4}" },
3809+ { "jse:INVALID_OPTION", "${\"1\": }invalid value for \"$2\" option${; 3}" },
3810+ { "jse:MISSING_KEY", "\"$1\": missing key${ for type \"2\"} required${ 3}" },
3811+ { "jse:NEW_KEY_NOT_ALLOWED", "\"$1\": new key not allowed since \\$open of base-type $2 is false" },
3812+ { "jse:SCHEMA_NOT_FOUND", "\"$1\": could not find schema${ at location \"2\"}${: 3}" },
3813+ { "jse:TYPE_MISMATCH", "\"$1\": type does not match required type of $2${ for 3}" },
3814+ { "jse:TYPE_VIOLATION", "\"$1\": invalid value type; must be $2" },
3815+ { "jse:UNKNOWN_PREFIX", "\"$1\": unknown prefix" },
3816+ { "jse:UNKNOWN_TYPE", "\"$1\": unknown type" },
3817+ { "zerr:XSST0001", "\"$1\": function cannot be declared as both updating and sequential" },
3818+ { "zerr:XSST0002", "\"$1\": function declared sequential but has updating body" },
3819+ { "zerr:XSST0003", "\"$1\": function declared updating but has sequential body" },
3820+ { "zerr:XSST0004", "\"$1\": function declared nonsequential but has sequential body" },
3821+ { "zerr:XSST0005", "expression cannot be both updating and sequential" },
3822+ { "zerr:XSST0006", "sequential expression not allowed here" },
3823+ { "zerr:XSST0007", "\"$1\": variable not assignable" },
3824+ { "zerr:XSST0008", "\"while\" statement with non-sequential body" },
3825+ { "zerr:XSST0009", "\"break loop\" statement not inside while statement" },
3826+ { "zerr:XSST0010", "\"continue loop\" statement not inside while statement" },
3827+ { "zerr:ZAPI0002", "XQuery compilation failed${: 1}" },
3828+ { "zerr:ZAPI0003", "XQuery not compiled" },
3829+ { "zerr:ZAPI0004", "XQuery already compiled" },
3830+ { "zerr:ZAPI0005", "XQuery already executing" },
3831+ { "zerr:ZAPI0006", "XQuery already closed" },
3832+ { "zerr:ZAPI0007", "cannot serialize pul" },
3833+ { "zerr:ZAPI0008", "can not execute a non-updating XQuery" },
3834+ { "zerr:ZAPI0009", "XQuery not compiled in debug mode" },
3835+ { "zerr:ZAPI0011", "\"$1\": undeclared variable" },
3836+ { "zerr:ZAPI0014", "\"$1\": invalid argument${: 2}" },
3837+ { "zerr:ZAPI0015", "\"$1\": createModule() function not found${: 2}" },
3838+ { "zerr:ZAPI0019", "\"$1\": external module already registered" },
3839+ { "zerr:ZAPI0020", "\"$1\": document already exists in store" },
3840+ { "zerr:ZAPI0021", "\"$1\": item to add to the store is not an XML document node" },
3841+ { "zerr:ZAPI0023", "non-atomic value can not be assigned to the context size" },
3842+ { "zerr:ZAPI0024", "\"$1\": wrong type for context size value (must be integer)" },
3843+ { "zerr:ZAPI0025", "non-atomic value can not be assigned to the context position" },
3844+ { "zerr:ZAPI0026", "\"$1\": wrong type for context position value (must be integer)" },
3845+ { "zerr:ZAPI0027", "cannot update dynamic context with iterators" },
3846+ { "zerr:ZAPI0028", "\"$1\": invalid node URI" },
3847+ { "zerr:ZAPI0029", "\"$1\": reference already present in the store" },
3848+ { "zerr:ZAPI0030", "node has no current reference" },
3849+ { "zerr:ZAPI0039", "XQuery has iterator already" },
3850+ { "zerr:ZAPI0040", "iterator is not open" },
3851+ { "zerr:ZAPI0041", "iterator is already open" },
3852+ { "zerr:ZAPI0042", "iterator is closed" },
3853+ { "zerr:ZAPI0043", "cannot serialize JSON item using current output method" },
3854+ { "zerr:ZAPI0045", "cannot serialize sequence containing both JSON and XML items" },
3855+ { "zerr:ZAPI0070", "\"$1\": invalid serialization method for SAX" },
3856+ { "zerr:ZAPI0080", "can not retrieve reference for a JSON object or array that is not in a collection" },
3857+ { "zerr:ZAPI0090", "non root element cannot be validated in place" },
3858+ { "zerr:ZCSE0001", "\"$1\": nonexistent input field" },
3859+ { "zerr:ZCSE0002", "\"$1\": incompatible input field${: type=2}${, class=3}" },
3860+ { "zerr:ZCSE0003", "\"$1\": unrecognized class field" },
3861+ { "zerr:ZCSE0004", "\"$1\": unresolved field reference" },
3862+ { "zerr:ZCSE0005", "class version for \"$1\" ($2) is too new; supported version is $3" },
3863+ { "zerr:ZCSE0006", "class version for \"$1\" ($2) is too old; minimum supported version is $3; use Zorba 0x$4 instead" },
3864+ { "zerr:ZCSE0007", "input archive used for out serialization" },
3865+ { "zerr:ZCSE0008", "output archive used for in serialization" },
3866+ { "zerr:ZCSE0009", "\"$1\": class not serializable" },
3867+ { "zerr:ZCSE0010", "\"$1\": item type not serializable; only atomic, node, function, and error items are supported" },
3868+ { "zerr:ZCSE0011", "input archive not Zorba archive" },
3869+ { "zerr:ZCSE0012", "\"$1\": incompatible archive version; expected \"$2\"" },
3870+ { "zerr:ZCSE0013", "failed to load pre-compiled query${: 1}" },
3871+ { "zerr:ZCSE0014", "cannot save execution plan: infinite circular dependencies" },
3872+ { "zerr:ZCSE0015", "cannot load execution plan: incompatible between 32/64 bits or little/big-endian" },
3873+ { "zerr:ZCSE0016", "cannot load execution plan saved from release mode Zorba into debug mode Zorba" },
3874+ { "zerr:ZCSE0017", "cannot load execution plan saved from debug mode Zorba into release mode Zorba" },
3875+ { "zerr:ZDDY0001", "\"$1\": collection not declared" },
3876+ { "zerr:ZDDY0002", "\"$1\": collection already exists" },
3877+ { "zerr:ZDDY0003", "\"$1\": collection does not exist" },
3878+ { "zerr:ZDDY0004", "\"$1\": can not update constant collection" },
3879+ { "zerr:ZDDY0005", "\"$1\": illegal insert into append-only collection" },
3880+ { "zerr:ZDDY0006", "\"$1\": illegal insert into queue collection" },
3881+ { "zerr:ZDDY0007", "\"$1\": illegal delete from append-only collection" },
3882+ { "zerr:ZDDY0008", "\"$1\": illegal delete from queue collection" },
3883+ { "zerr:ZDDY0009", "\"$1\": not all nodes to delete are at the beginning of this queue collection" },
3884+ { "zerr:ZDDY0010", "\"$1\": illegal update of read-only nodes" },
3885+ { "zerr:ZDDY0011", "\"$1\": collection does not contain node" },
3886+ { "zerr:ZDDY0012", "\"$1\": illegal $2 into unordered collection" },
3887+ { "zerr:ZDDY0013", "\"$1\": can not delete collection because indexes reference it" },
3888+ { "zerr:ZDDY0014", "\"$1\": can not delete collection because integrity constraints reference it" },
3889+ { "zerr:ZDDY0015", "\"$1\": can not delete collection because there are references to its nodes" },
3890+ { "zerr:ZDDY0016", "\"$1\": multiple attemps to create a collection in the same snapshot" },
3891+ { "zerr:ZDDY0017", "node does not belong to any collection" },
3892+ { "zerr:ZDDY0018", "all nodes must be in same collection" },
3893+ { "zerr:ZDDY0019", "\"$1\": iterator on collection is not open" },
3894+ { "zerr:ZDDY0020", "\"$1\": index domain expression yields nodes that are not in collection" },
3895+ { "zerr:ZDDY0021", "\"$1\": undeclared index" },
3896+ { "zerr:ZDDY0022", "\"$1\": index already exists" },
3897+ { "zerr:ZDDY0023", "\"$1\": index does not exist" },
3898+ { "zerr:ZDDY0024", "\"$1\": index uniqueness violation" },
3899+ { "zerr:ZDDY0025", "\"$1\": invalid number of arguments to $2 operation; given $3 expected $4" },
3900+ { "zerr:ZDDY0026", "\"$1\": index range probe not allowed" },
3901+ { "zerr:ZDDY0027", "\"$1\": index multiple creates" },
3902+ { "zerr:ZDDY0028", "\"$1\": index domain has duplicate nodes" },
3903+ { "zerr:ZDDY0029", "\"$1\": index point-general probe not allowed" },
3904+ { "zerr:ZDDY0030", "\"$1\": index range-general probe not allowed" },
3905+ { "zerr:ZDDY0031", "\"$1\": integrity constraint is not declared" },
3906+ { "zerr:ZDDY0032", "\"$1\": integrity constraint is not activated" },
3907+ { "zerr:ZDDY0033", "\"$1\": integrity constraint not met for collection \"$2\"" },
3908+ { "zerr:ZDDY0034", "\"$1\": index range-value probe has search keys with incompatible types" },
3909+ { "zerr:ZDDY0035", "\"$1\": index inserting more than one key not allowed for general index" },
3910+ { "zerr:ZDDY0036", "attempt to delete non-root node from collection \"$1\"" },
3911+ { "zerr:ZDDY0037", "\"$1\": illegal edit in append-only collection" },
3912+ { "zerr:ZDDY0038", "\"$1\": illegal edit from queue collection" },
3913+ { "zerr:ZDDY0039", "attempt to edit non-root node in collection \"$1\"" },
3914+ { "zerr:ZDDY0040", "attempt to edit an item with a template of a different kind (for example an object with a node)." },
3915+ { "zerr:ZDDY0041", "\"$1\": collection was modified while reading" },
3916+ { "zerr:ZDDY0042", "\"$1\": map insertion requires $2 to belong to a collection" },
3917+ { "zerr:ZDDY0043", "\"$1\": invalid type for option \"$2\"" },
3918+ { "zerr:ZDST0001", "\"$1\": collection already declared" },
3919+ { "zerr:ZDST0002", "\"$1\": collection already imported into module \"$2\"" },
3920+ { "zerr:ZDST0003", "\"$1\": collection declaration not allowed in main module" },
3921+ { "zerr:ZDST0004", "collection multiple property values" },
3922+ { "zerr:ZDST0006", "\"$1\": invalid annotation for collection \"$2\"" },
3923+ { "zerr:ZDST0007", "\"$1\": collection declaration in foreign module" },
3924+ { "zerr:ZDST0021", "\"$1\": index already declared" },
3925+ { "zerr:ZDST0022", "\"$1\": index already imported into module \"$2\"" },
3926+ { "zerr:ZDST0023", "\"$1\": index declaration not allowed in main module" },
3927+ { "zerr:ZDST0024", "index multiple property values" },
3928+ { "zerr:ZDST0025", "\"$1\": index cannot be declared as unique" },
3929+ { "zerr:ZDST0026", "index invalid property value" },
3930+ { "zerr:ZDST0027", "\"$1\": $2" },
3931+ { "zerr:ZDST0028", "\"$1\": index not deterministic" },
3932+ { "zerr:ZDST0029", "\"$1\": index invalid data source" },
3933+ { "zerr:ZDST0030", "\"$1\": index non-constant data source" },
3934+ { "zerr:ZDST0031", "\"$1\": index has free vars" },
3935+ { "zerr:ZDST0032", "\"$1\": index references context item" },
3936+ { "zerr:ZDST0033", "\"$1\": index non-simple expression" },
3937+ { "zerr:ZDST0034", "\"$1\": index can not do automatic maintenance" },
3938+ { "zerr:ZDST0035", "\"$1\": number of key expressions for general indexes is restricted to one expression" },
3939+ { "zerr:ZDST0036", "\"$1\": index declaration in foreign module" },
3940+ { "zerr:ZDST0041", "\"$1\": integrity constraint already declared" },
3941+ { "zerr:ZDST0044", "\"$1\": integrity constraint declaration not allowed in main module" },
3942+ { "zerr:ZDST0048", "\"$1\": integrity constraint declaration in foreign module" },
3943+ { "zerr:ZDST0060", "\"$1\": feature not supported; $2" },
3944+ { "zerr:ZDTY0001", "\"$1\": invalid item type in collection \"$2\"" },
3945+ { "zerr:ZDTY0010", "non-node item in domain expression of index $1" },
3946+ { "zerr:ZDTY0011", "item type \"$1\" does not match declared type \"$2\" for key expression of index $3" },
3947+ { "zerr:ZDTY0012", "\"$1\": general range index key item has type for which no ordering relationship exists" },
3948 #if defined(ZORBA_WITH_DEBUGGER)
3949- { "ZGDB0001", "" },
3950-#endif
3951- { "ZJ2X0001", "JsonML (array form) $1" },
3952- { "ZJ2X0002", "JsonML (object form) $1" },
3953- { "ZJPE0001", "'$1': illegal JSON character" },
3954- { "ZJPE0002", "\"$1\": illegal Unicode code-point" },
3955- { "ZJPE0003", "'\\\\$1': illegal JSON character escape" },
3956- { "ZJPE0004", "illegal JSON literal" },
3957- { "ZJPE0005", "illegal JSON number" },
3958- { "ZJPE0006", "\"$1\": unexpected JSON token" },
3959- { "ZJPE0007", "unterminated JSON string" },
3960- { "ZJPE0008", "\"$1\": illegal QName" },
3961- { "ZJPE0009", "illegal empty string" },
3962- { "ZJPE0010", "JsonML (array form) must start with '['" },
3963- { "ZJSE0001", "JSON serialization requires an element node" },
3964- { "ZJSE0002", "\"$1\" element missing required \"$2\" attribute" },
3965- { "ZJSE0003", "\"$1\": illegal value for attribute \"$2\"" },
3966- { "ZJSE0004", "\"$1\": illegal $2?{child }element/node${ of JSON type \"2\"}${; must be \"3\"}" },
3967- { "ZJSE0007", "\"$1\" element missing required \"$2\" value" },
3968- { "ZJSE0008", "\"$1\": illegal value for JSON type \"$2\"" },
3969- { "ZJSE0009", "\"$1\": JSON type \"$2\" can not have multiple child nodes" },
3970- { "ZOSE0001", "\"$1\": file not found" },
3971- { "ZOSE0002", "\"$1\": not plain file" },
3972- { "ZOSE0003", "stream read failure" },
3973- { "ZOSE0004", "${\"1\": }I/O error${: 2}" },
3974- { "ZOSE0005", "\"$1\": error loading dynamic library${: 2}" },
3975- { "ZOSE0006", "stream transcoding error ($1)" },
3976- { "ZOSE0007", "\"$1\": unsupported locale" },
3977- { "ZSTR0001", "\"$1\": index already exists" },
3978- { "ZSTR0002", "\"$1\": index does not exist" },
3979- { "ZSTR0003", "\"$1\": partial key insertion into index \"$2\"" },
3980- { "ZSTR0004", "\"$1\": partial key deletion from index \"$2\"" },
3981- { "ZSTR0007", "\"$1\": unsupported probe condition for index \"$2\"" },
3982- { "ZSTR0008", "\"$1\": collection already exists" },
3983- { "ZSTR0009", "\"$1\": collection not found" },
3984- { "ZSTR0010", "can not insert node into colletion \"$1\" because it already belongs to collection \"$2\"" },
3985- { "ZSTR0011", "non-root node can not be inserted into collection \"$1\"" },
3986- { "ZSTR0012", "non-node item used with collection \"$1\"" },
3987- { "ZSTR0013", "an item that is not a node, object, or array is used with collection \"$1\"" },
3988- { "ZSTR0015", "\"$1\": integrity constraint already exists" },
3989- { "ZSTR0016", "\"$1\": integrity constraint does not exist" },
3990- { "ZSTR0020", "loader I/O error${: 1}" },
3991- { "ZSTR0021", "\"$1\":$2,$3: loader parsing error${: 4}" },
3992- { "ZSTR0030", "NodeID error${: 1}" },
3993- { "ZSTR0040", "type error${: 1}" },
3994- { "ZSTR0041", "NaN comparison" },
3995- { "ZSTR0045", "duplicate node found in sequence" },
3996- { "ZSTR0050", "\"$1\" not implemented for item type \"$2\"" },
3997- { "ZSTR0055", "streamable string has already been consumed" },
3998- { "ZSTR0060", "\"$1\": value out of range${ 2}" },
3999- { "ZSTR0065", "Zorba did not close properly, objects may still in memory.\\n$1 referenced URI(s) remain in the string pool.\\nFor help avoiding this message please refer to http://www.zorba-xquery.com/html/documentation in section General Architecture -> Memory Leaks." },
4000- { "ZSTR0066", "$1: does not reference a node in collection $2" },
4001- { "ZWST0002", "\"$1\": unknown or unsupported annotation" },
4002- { "ZWST0003", "\"$1\": function declared sequential, but has non-sequential body" },
4003- { "ZWST0004", "sequential FLWOR expr may not have the semantics you expect" },
4004- { "ZWST0005", "\"$1\": function caching not possible; $2" },
4005- { "ZWST0006", "\"$1\": function caching might not give the intended result because the function is declared as $2" },
4006- { "ZWST0007", "\"$1\":$2,$3: loader parsing warning${: 4}" },
4007- { "ZWST0008", "\"$1\": has been deprecated; use \"$2\" instead" },
4008- { "ZWST0009", "feature not supported by the common language grammar${: 1}" },
4009- { "ZXQD0001", "\"$1\": prefix not declared when calling function \"$2\" from $3" },
4010- { "ZXQD0002", "\"$1\": $2" },
4011- { "ZXQD0003", "inconsistent options to the parse-xml() function: $1" },
4012- { "ZXQD0004", "invalid parameter: $1" },
4013- { "ZXQD0005", "key with type $1 not subtype or castable to target type $2 of map ($3)" },
4014- { "ZXQD0006", "\"$1\": invalid UTF-8 byte sequence" },
4015- { "ZXQP0000", "no error" },
4016- { "ZXQP0001", "dynamic runtime error${: 1}" },
4017- { "ZXQP0002", "\"$1\": assertion failed${ with the message: 2}" },
4018- { "ZXQP0003", "internal error${: 1}" },
4019- { "ZXQP0004", "not yet implemented: $1" },
4020- { "ZXQP0005", "\"$1\": feature not enabled" },
4021- { "ZXQP0006", "\"$1\": unknown character encoding" },
4022- { "ZXQP0007", "\"$1\": function signature does not match declaration" },
4023- { "ZXQP0008", "\"$1\": function implementation not found" },
4024- { "ZXQP0009", "\"$1\": function referred to by this local-name has the local-name \"$2\" instead" },
4025- { "ZXQP0010", "\"$1\": builtin sequential function not implemented as sequential" },
4026- { "ZXQP0011", "\"$1\": invalid locale" },
4027- { "ZXQP0012", "\"$1\": unknown locale" },
4028- { "ZXQP0013", "FxCharHeap error: $1 ($2)" },
4029- { "ZXQP0014", "${\"1\": }out of memory${: 2}" },
4030- { "ZXQP0016", "\"$1\": reserved module target namespace" },
4031- { "ZXQP0017", "file access disabled" },
4032- { "ZXQP0020", "\"$1\": invalid URI${: 2}" },
4033- { "ZXQP0021", "user error" },
4034- { "ZXQP0024", "XML does not match schema${: \"1\"}${ 2}" },
4035- { "ZXQP0025", "\"$1\": could not fetch resource${; reason: 2}" },
4036- { "ZXQP0026", "\"$1\": invalid enumerated value for $2" },
4037- { "ZXQP0028", "\"$1\": target namespace not provided by module from $2" },
4038- { "ZXQP0029", "\"$1\": URI access not allowed" },
4039- { "ZXQP0030", "deadlock" },
4040- { "ZXQP0031", "malformed XQueryX XML input${: 1}" },
4041- { "ZXQP0032", "error transforming XQueryX to XQuery${: 1}" },
4042- { "ZXQP0033", "${\"1\": }XML error in schema${: 2}" },
4043- { "ZXQP0035", "${\"1\": }unexpected error in schema${: 2}" },
4044- { "ZXQP0036", "BreakIterator creation failed" },
4045- { "ZXQP0037", "\"$1\": loaded module version \"$2\" does not match import version specification" },
4046- { "ZXQP0038", "Query requires Zorba version \"$1\"; you are running Zorba \"$2\"" },
4047- { "ZXQP0039", "\"$1\": invalid version specification" },
4048- { "ZXQP0040", "\"$1\": function invokes a nondeterministic function but is missing the nondeterministic annotation" },
4049- { "ZXQP0050", "\"$1\": feature not available" },
4050- { "ZXQP0060", "\"$1\": unknown option" },
4051- { "ZXQP0061", "\"$1\": this option cannot be specified in a query, it must be set via C++ API or command-line parameter" },
4052-#if !defined(ZORBA_NO_FULL_TEXT)
4053- { "ZXQP8401", "\"$1\": wrong WordNet file version; should be \"$2\"" },
4054-#endif
4055-#if !defined(ZORBA_NO_FULL_TEXT)
4056- { "ZXQP8402", "thesaurus data endianness does not match CPU" },
4057-#endif
4058-#if !defined(ZORBA_NO_FULL_TEXT)
4059- { "ZXQP8403", "thesaurus data error${: 1}" },
4060-#endif
4061+ { "zerr:ZGDB0001", "" },
4062+#endif
4063+ { "zerr:ZJ2X0001", "JsonML (array form) $1" },
4064+ { "zerr:ZJ2X0002", "JsonML (object form) $1" },
4065+ { "zerr:ZJPE0001", "'$1': illegal JSON character" },
4066+ { "zerr:ZJPE0002", "\"$1\": illegal Unicode code-point" },
4067+ { "zerr:ZJPE0003", "'\\\\$1': illegal JSON character escape" },
4068+ { "zerr:ZJPE0004", "illegal JSON literal" },
4069+ { "zerr:ZJPE0005", "illegal JSON number" },
4070+ { "zerr:ZJPE0006", "\"$1\": unexpected JSON token" },
4071+ { "zerr:ZJPE0007", "unterminated JSON string" },
4072+ { "zerr:ZJPE0008", "\"$1\": illegal QName" },
4073+ { "zerr:ZJPE0009", "illegal empty string" },
4074+ { "zerr:ZJPE0010", "JsonML (array form) must start with '['" },
4075+ { "zerr:ZJSE0001", "JSON serialization requires an element node" },
4076+ { "zerr:ZJSE0002", "\"$1\" element missing required \"$2\" attribute" },
4077+ { "zerr:ZJSE0003", "\"$1\": illegal value for attribute \"$2\"" },
4078+ { "zerr:ZJSE0004", "\"$1\": illegal $2?{child }element/node${ of JSON type \"2\"}${; must be \"3\"}" },
4079+ { "zerr:ZJSE0007", "\"$1\" element missing required \"$2\" value" },
4080+ { "zerr:ZJSE0008", "\"$1\": illegal value for JSON type \"$2\"" },
4081+ { "zerr:ZJSE0009", "\"$1\": JSON type \"$2\" can not have multiple child nodes" },
4082+ { "zerr:ZOSE0001", "\"$1\": file not found" },
4083+ { "zerr:ZOSE0002", "\"$1\": not plain file" },
4084+ { "zerr:ZOSE0003", "stream read failure" },
4085+ { "zerr:ZOSE0004", "${\"1\": }I/O error${: 2}" },
4086+ { "zerr:ZOSE0005", "\"$1\": error loading dynamic library${: 2}" },
4087+ { "zerr:ZOSE0006", "stream transcoding error ($1)" },
4088+ { "zerr:ZOSE0007", "\"$1\": unsupported locale" },
4089+ { "zerr:ZSTR0001", "\"$1\": index already exists" },
4090+ { "zerr:ZSTR0002", "\"$1\": index does not exist" },
4091+ { "zerr:ZSTR0003", "\"$1\": partial key insertion into index \"$2\"" },
4092+ { "zerr:ZSTR0004", "\"$1\": partial key deletion from index \"$2\"" },
4093+ { "zerr:ZSTR0007", "\"$1\": unsupported probe condition for index \"$2\"" },
4094+ { "zerr:ZSTR0008", "\"$1\": collection already exists" },
4095+ { "zerr:ZSTR0009", "\"$1\": collection not found" },
4096+ { "zerr:ZSTR0010", "can not insert node into colletion \"$1\" because it already belongs to collection \"$2\"" },
4097+ { "zerr:ZSTR0011", "non-root node can not be inserted into collection \"$1\"" },
4098+ { "zerr:ZSTR0012", "non-node item used with collection \"$1\"" },
4099+ { "zerr:ZSTR0013", "an item that is not a node, object, or array is used with collection \"$1\"" },
4100+ { "zerr:ZSTR0015", "\"$1\": integrity constraint already exists" },
4101+ { "zerr:ZSTR0016", "\"$1\": integrity constraint does not exist" },
4102+ { "zerr:ZSTR0020", "loader I/O error${: 1}" },
4103+ { "zerr:ZSTR0021", "\"$1\":$2,$3: loader parsing error${: 4}" },
4104+ { "zerr:ZSTR0030", "NodeID error${: 1}" },
4105+ { "zerr:ZSTR0040", "type error${: 1}" },
4106+ { "zerr:ZSTR0041", "NaN comparison" },
4107+ { "zerr:ZSTR0045", "duplicate node found in sequence" },
4108+ { "zerr:ZSTR0050", "\"$1\" not implemented for item type \"$2\"" },
4109+ { "zerr:ZSTR0055", "streamable string has already been consumed" },
4110+ { "zerr:ZSTR0060", "\"$1\": value out of range${ 2}" },
4111+ { "zerr:ZSTR0065", "Zorba did not close properly, objects may still in memory.\\n$1 referenced URI(s) remain in the string pool.\\nFor help avoiding this message please refer to http://www.zorba-xquery.com/html/documentation in section General Architecture -> Memory Leaks." },
4112+ { "zerr:ZSTR0066", "$1: does not reference a node in collection $2" },
4113+ { "zerr:ZXQD0001", "\"$1\": prefix not declared when calling function \"$2\" from $3" },
4114+ { "zerr:ZXQD0002", "\"$1\": $2" },
4115+ { "zerr:ZXQD0003", "inconsistent options to the parse-xml() function: $1" },
4116+ { "zerr:ZXQD0004", "invalid parameter: $1" },
4117+ { "zerr:ZXQD0005", "key with type $1 not subtype or castable to target type $2 of map ($3)" },
4118+ { "zerr:ZXQD0006", "\"$1\": invalid UTF-8 byte sequence" },
4119+ { "zerr:ZXQP0000", "no error" },
4120+ { "zerr:ZXQP0001", "dynamic runtime error${: 1}" },
4121+ { "zerr:ZXQP0002", "\"$1\": assertion failed${ with the message: 2}" },
4122+ { "zerr:ZXQP0003", "internal error${: 1}" },
4123+ { "zerr:ZXQP0004", "not yet implemented: $1" },
4124+ { "zerr:ZXQP0005", "\"$1\": feature not enabled" },
4125+ { "zerr:ZXQP0006", "\"$1\": unknown character encoding" },
4126+ { "zerr:ZXQP0007", "\"$1\": function signature does not match declaration" },
4127+ { "zerr:ZXQP0008", "\"$1\": function implementation not found" },
4128+ { "zerr:ZXQP0009", "\"$1\": function referred to by this local-name has the local-name \"$2\" instead" },
4129+ { "zerr:ZXQP0010", "\"$1\": builtin sequential function not implemented as sequential" },
4130+ { "zerr:ZXQP0011", "\"$1\": invalid locale" },
4131+ { "zerr:ZXQP0012", "\"$1\": unknown locale" },
4132+ { "zerr:ZXQP0013", "FxCharHeap error: $1 ($2)" },
4133+ { "zerr:ZXQP0014", "${\"1\": }out of memory${: 2}" },
4134+ { "zerr:ZXQP0016", "\"$1\": reserved module target namespace" },
4135+ { "zerr:ZXQP0017", "file access disabled" },
4136+ { "zerr:ZXQP0020", "\"$1\": invalid URI${: 2}" },
4137+ { "zerr:ZXQP0021", "user error" },
4138+ { "zerr:ZXQP0024", "XML does not match schema${: \"1\"}${ 2}" },
4139+ { "zerr:ZXQP0025", "\"$1\": could not fetch resource${; reason: 2}" },
4140+ { "zerr:ZXQP0026", "\"$1\": invalid enumerated value for $2" },
4141+ { "zerr:ZXQP0028", "\"$1\": target namespace not provided by module from $2" },
4142+ { "zerr:ZXQP0029", "\"$1\": URI access not allowed" },
4143+ { "zerr:ZXQP0030", "deadlock" },
4144+ { "zerr:ZXQP0031", "malformed XQueryX XML input${: 1}" },
4145+ { "zerr:ZXQP0032", "error transforming XQueryX to XQuery${: 1}" },
4146+ { "zerr:ZXQP0033", "${\"1\": }XML error in schema${: 2}" },
4147+ { "zerr:ZXQP0035", "${\"1\": }unexpected error in schema${: 2}" },
4148+ { "zerr:ZXQP0036", "BreakIterator creation failed" },
4149+ { "zerr:ZXQP0037", "\"$1\": loaded module version \"$2\" does not match import version specification" },
4150+ { "zerr:ZXQP0038", "Query requires Zorba version \"$1\"; you are running Zorba \"$2\"" },
4151+ { "zerr:ZXQP0039", "\"$1\": invalid version specification" },
4152+ { "zerr:ZXQP0040", "\"$1\": function invokes a nondeterministic function but is missing the nondeterministic annotation" },
4153+ { "zerr:ZXQP0050", "\"$1\": feature not available" },
4154+ { "zerr:ZXQP0060", "\"$1\": unknown option" },
4155+ { "zerr:ZXQP0061", "\"$1\": this option cannot be specified in a query, it must be set via C++ API or command-line parameter" },
4156+#if !defined(ZORBA_NO_FULL_TEXT)
4157+ { "zerr:ZXQP8401", "\"$1\": wrong WordNet file version; should be \"$2\"" },
4158+#endif
4159+#if !defined(ZORBA_NO_FULL_TEXT)
4160+ { "zerr:ZXQP8402", "thesaurus data endianness does not match CPU" },
4161+#endif
4162+#if !defined(ZORBA_NO_FULL_TEXT)
4163+ { "zerr:ZXQP8403", "thesaurus data error${: 1}" },
4164+#endif
4165+ { "zuri:CHARSET_UNKNOWN", "\"$1\": unknown or invalid character set" },
4166+ { "zuri:INVALID_ABSOLUTE_PATH", "path component of absolute URI must begin with /" },
4167+ { "zuri:OPAQUE_COMB_NOT_VALID", "cannot specify opaque-part in conjunction with host/port/path/user-info/query" },
4168+ { "zuri:OPAQUE_WITHOUT_SCHEME", "scheme required when specifying opaque-part" },
4169+ { "zuri:URI_UNRESOLVED_OR_NOSTREAM", "\"$1\": stream is unresolved or it is not a stream - \"$2\"" },
4170+ { "zwarn:ZWST0002", "\"$1\": unknown or unsupported annotation" },
4171+ { "zwarn:ZWST0003", "\"$1\": function declared sequential, but has non-sequential body" },
4172+ { "zwarn:ZWST0004", "sequential FLWOR expr may not have the semantics you expect" },
4173+ { "zwarn:ZWST0005", "\"$1\": function caching not possible; $2" },
4174+ { "zwarn:ZWST0006", "\"$1\": function caching might not give the intended result because the function is declared as $2" },
4175+ { "zwarn:ZWST0007", "\"$1\":$2,$3: loader parsing warning${: 4}" },
4176+ { "zwarn:ZWST0008", "\"$1\": has been deprecated; use \"$2\" instead" },
4177+ { "zwarn:ZWST0009", "feature not supported by the common language grammar${: 1}" },
4178 { "~AllMatchesHasExcludes", "AllMatches contains StringExclude" },
4179 { "~AlreadySpecified", "already specified" },
4180 { "~AppliedAt", "applied at" },
4181
4182=== modified file 'src/runtime/csv/csv_impl.cpp'
4183--- src/runtime/csv/csv_impl.cpp 2014-01-16 23:09:20 +0000
4184+++ src/runtime/csv/csv_impl.cpp 2014-01-21 03:30:58 +0000
4185@@ -645,7 +645,7 @@
4186 line += state->quote_;
4187 } else
4188 throw XQUERY_EXCEPTION(
4189- csv::INVALID_CSV_VALUE,
4190+ csv::INVALID_VALUE,
4191 ERROR_PARAMS( value_item->getKind(), (*key)->getStringValue() ),
4192 ERROR_LOC( loc )
4193 );

Subscribers

People subscribed via source and target branches