sedna 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. data/{CHANGES → CHANGES.rdoc} +9 -0
  2. data/{README → README.rdoc} +23 -25
  3. data/Rakefile +32 -9
  4. data/ext/{extconf.rb → sedna/extconf.rb} +33 -21
  5. data/ext/{sedna.c → sedna/sedna.c} +48 -40
  6. data/test/sedna_test.rb +9 -9
  7. data/vendor/sedna/AUTHORS +18 -0
  8. data/vendor/sedna/COPYRIGHT +90 -0
  9. data/vendor/sedna/LICENSE +202 -0
  10. data/vendor/sedna/Makefile.include +423 -0
  11. data/vendor/sedna/Makefile.platform +31 -0
  12. data/vendor/sedna/depend.sed +48 -0
  13. data/vendor/sedna/driver/c/Makefile +98 -0
  14. data/vendor/sedna/driver/c/libsedna.c +1998 -0
  15. data/vendor/sedna/driver/c/libsedna.h +199 -0
  16. data/vendor/sedna/driver/c/sednamt.def +21 -0
  17. data/vendor/sedna/driver/c/sp_defs.h +186 -0
  18. data/vendor/sedna/kernel/common/FastXptrHash.cpp +101 -0
  19. data/vendor/sedna/kernel/common/IntHash.h +314 -0
  20. data/vendor/sedna/kernel/common/IntList.h +224 -0
  21. data/vendor/sedna/kernel/common/Makefile +30 -0
  22. data/vendor/sedna/kernel/common/SSMMsg.cpp +459 -0
  23. data/vendor/sedna/kernel/common/SSMMsg.h +142 -0
  24. data/vendor/sedna/kernel/common/XptrHash.h +435 -0
  25. data/vendor/sedna/kernel/common/argtable.c +972 -0
  26. data/vendor/sedna/kernel/common/argtable.h +896 -0
  27. data/vendor/sedna/kernel/common/base.cpp +339 -0
  28. data/vendor/sedna/kernel/common/base.h +226 -0
  29. data/vendor/sedna/kernel/common/bit_set.cpp +157 -0
  30. data/vendor/sedna/kernel/common/bit_set.h +55 -0
  31. data/vendor/sedna/kernel/common/commutil.h +67 -0
  32. data/vendor/sedna/kernel/common/config.h +62 -0
  33. data/vendor/sedna/kernel/common/counted_ptr.h +74 -0
  34. data/vendor/sedna/kernel/common/errdbg/ErrorCodes.java +1056 -0
  35. data/vendor/sedna/kernel/common/errdbg/Makefile +34 -0
  36. data/vendor/sedna/kernel/common/errdbg/assert.c +133 -0
  37. data/vendor/sedna/kernel/common/errdbg/d_printf.c +150 -0
  38. data/vendor/sedna/kernel/common/errdbg/d_printf.h +91 -0
  39. data/vendor/sedna/kernel/common/errdbg/error.codes +1743 -0
  40. data/vendor/sedna/kernel/common/errdbg/error_codes.c +531 -0
  41. data/vendor/sedna/kernel/common/errdbg/error_codes.h +549 -0
  42. data/vendor/sedna/kernel/common/errdbg/error_codes_scm.scm +527 -0
  43. data/vendor/sedna/kernel/common/errdbg/event_log.c +956 -0
  44. data/vendor/sedna/kernel/common/errdbg/event_log.h +226 -0
  45. data/vendor/sedna/kernel/common/errdbg/exceptions.cpp +155 -0
  46. data/vendor/sedna/kernel/common/errdbg/exceptions.h +559 -0
  47. data/vendor/sedna/kernel/common/errdbg/gen_error_codes +0 -0
  48. data/vendor/sedna/kernel/common/errdbg/gen_error_codes.c +345 -0
  49. data/vendor/sedna/kernel/common/gmm.cpp +192 -0
  50. data/vendor/sedna/kernel/common/gmm.h +29 -0
  51. data/vendor/sedna/kernel/common/ipc_ops.cpp +435 -0
  52. data/vendor/sedna/kernel/common/ipc_ops.h +51 -0
  53. data/vendor/sedna/kernel/common/lfsGlobals.h +12 -0
  54. data/vendor/sedna/kernel/common/lm_base.h +90 -0
  55. data/vendor/sedna/kernel/common/mmgr/Makefile +11 -0
  56. data/vendor/sedna/kernel/common/mmgr/aset.c +1185 -0
  57. data/vendor/sedna/kernel/common/mmgr/mcxt.c +741 -0
  58. data/vendor/sedna/kernel/common/mmgr/memnodes.h +70 -0
  59. data/vendor/sedna/kernel/common/mmgr/memutils.h +145 -0
  60. data/vendor/sedna/kernel/common/mmgr/se_alloc.h +321 -0
  61. data/vendor/sedna/kernel/common/mmgr/track.c +214 -0
  62. data/vendor/sedna/kernel/common/pping.cpp +672 -0
  63. data/vendor/sedna/kernel/common/pping.h +119 -0
  64. data/vendor/sedna/kernel/common/rcv_test.cpp +273 -0
  65. data/vendor/sedna/kernel/common/rcv_test.h +19 -0
  66. data/vendor/sedna/kernel/common/sedna.c +128 -0
  67. data/vendor/sedna/kernel/common/sedna.h +49 -0
  68. data/vendor/sedna/kernel/common/sedna_ef.h +52 -0
  69. data/vendor/sedna/kernel/common/sm_vmm_data.h +144 -0
  70. data/vendor/sedna/kernel/common/sp.c +93 -0
  71. data/vendor/sedna/kernel/common/sp.h +36 -0
  72. data/vendor/sedna/kernel/common/st/Makefile +20 -0
  73. data/vendor/sedna/kernel/common/st/os_linux/stacktrace.c +213 -0
  74. data/vendor/sedna/kernel/common/st/os_nt/stacktrace.c +338 -0
  75. data/vendor/sedna/kernel/common/st/os_other/stacktrace.c +39 -0
  76. data/vendor/sedna/kernel/common/st/stacktrace.h +72 -0
  77. data/vendor/sedna/kernel/common/st/stacktrfmt.c +64 -0
  78. data/vendor/sedna/kernel/common/tr_debug.cpp +112 -0
  79. data/vendor/sedna/kernel/common/tr_debug.h +22 -0
  80. data/vendor/sedna/kernel/common/u/Makefile +14 -0
  81. data/vendor/sedna/kernel/common/u/u.c +268 -0
  82. data/vendor/sedna/kernel/common/u/u.h +715 -0
  83. data/vendor/sedna/kernel/common/u/uatomic.h +12 -0
  84. data/vendor/sedna/kernel/common/u/udl.h +31 -0
  85. data/vendor/sedna/kernel/common/u/uevent.c +406 -0
  86. data/vendor/sedna/kernel/common/u/uevent.h +71 -0
  87. data/vendor/sedna/kernel/common/u/ugnames.cpp +330 -0
  88. data/vendor/sedna/kernel/common/u/ugnames.h +134 -0
  89. data/vendor/sedna/kernel/common/u/uhash_map.h +77 -0
  90. data/vendor/sedna/kernel/common/u/uhdd.c +1018 -0
  91. data/vendor/sedna/kernel/common/u/uhdd.h +206 -0
  92. data/vendor/sedna/kernel/common/u/ummap.cpp +268 -0
  93. data/vendor/sedna/kernel/common/u/ummap.h +60 -0
  94. data/vendor/sedna/kernel/common/u/umutex.c +145 -0
  95. data/vendor/sedna/kernel/common/u/umutex.h +65 -0
  96. data/vendor/sedna/kernel/common/u/upipe.cpp +244 -0
  97. data/vendor/sedna/kernel/common/u/upipe.h +74 -0
  98. data/vendor/sedna/kernel/common/u/uprocess.c +767 -0
  99. data/vendor/sedna/kernel/common/u/uprocess.h +91 -0
  100. data/vendor/sedna/kernel/common/u/usafesync.h +41 -0
  101. data/vendor/sedna/kernel/common/u/usecurity.c +150 -0
  102. data/vendor/sedna/kernel/common/u/usecurity.h +55 -0
  103. data/vendor/sedna/kernel/common/u/usem.c +891 -0
  104. data/vendor/sedna/kernel/common/u/usem.h +83 -0
  105. data/vendor/sedna/kernel/common/u/ushm.c +222 -0
  106. data/vendor/sedna/kernel/common/u/ushm.h +46 -0
  107. data/vendor/sedna/kernel/common/u/usocket.c +541 -0
  108. data/vendor/sedna/kernel/common/u/usocket.h +118 -0
  109. data/vendor/sedna/kernel/common/u/usystem.c +57 -0
  110. data/vendor/sedna/kernel/common/u/usystem.h +46 -0
  111. data/vendor/sedna/kernel/common/u/uthread.c +259 -0
  112. data/vendor/sedna/kernel/common/u/uthread.h +95 -0
  113. data/vendor/sedna/kernel/common/u/utime.c +65 -0
  114. data/vendor/sedna/kernel/common/u/utime.h +40 -0
  115. data/vendor/sedna/kernel/common/u/uutils.c +142 -0
  116. data/vendor/sedna/kernel/common/u/uutils.h +65 -0
  117. data/vendor/sedna/kernel/common/ugc.cpp +156 -0
  118. data/vendor/sedna/kernel/common/ugc.h +15 -0
  119. data/vendor/sedna/kernel/common/utils.cpp +156 -0
  120. data/vendor/sedna/kernel/common/utils.h +133 -0
  121. data/vendor/sedna/kernel/common/version.c +16 -0
  122. data/vendor/sedna/kernel/common/version.h +21 -0
  123. data/vendor/sedna/kernel/common/wustructures.h +18 -0
  124. data/vendor/sedna/kernel/common/wutypes.h +34 -0
  125. data/vendor/sedna/kernel/common/xptr.cpp +17 -0
  126. data/vendor/sedna/kernel/common/xptr.h +211 -0
  127. data/vendor/sedna/ver +1 -0
  128. metadata +142 -14
@@ -0,0 +1,531 @@
1
+
2
+ //This file was generated. Do not edit it!!!
3
+
4
+ #include "common/errdbg/error_codes.h"
5
+
6
+ struct user_error_code_entry user_error_code_entries[] = {
7
+ {"SE1000", ueca_ROLLBACK_TRN, "Environment error. This error is caused by environment (operating system)."}
8
+ ,{"XPST0001", ueca_ROLLBACK_TRN, "It is a static error if analysis of an expression relies on some component of the static context that has not been assigned a value."}
9
+ ,{"XPDY0002", ueca_ROLLBACK_TRN, "It is a dynamic error if evaluation of an expression relies on some part of the dynamic context that has not been assigned a value."}
10
+ ,{"XPST0003", ueca_ROLLBACK_TRN, "It is a static error if an expression is not a valid instance of the grammar defined in A.1 EBNF."}
11
+ ,{"XPTY0004", ueca_ROLLBACK_TRN, "It is a type error if, during the static analysis phase, an expression is found to have a static type that is not appropriate for the context in which the expression occurs, or during the dynamic evaluation phase, the dynamic type of a value does not match a required type as specified by the matching rules in 2.5.4 SequenceType Matching."}
12
+ ,{"XPST0005", ueca_ROLLBACK_TRN, "During the analysis phase, it is a static error if the static type assigned to an expression other than the expression () or data(()) is empty-sequence()."}
13
+ ,{"XPTY0006", ueca_ROLLBACK_TRN, "(Not currently used.)"}
14
+ ,{"XPTY0007", ueca_ROLLBACK_TRN, "(Not currently used.)"}
15
+ ,{"XPST0008", ueca_ROLLBACK_TRN, "It is a static error if an expression refers to an element name, attribute name, schema type name, namespace prefix, or variable name that is not defined in the static context, except within an ElementTest or an AttributeTest."}
16
+ ,{"XQST0009", ueca_ROLLBACK_TRN, "An implementation that does not support the Schema Import Feature must raise a static error if a Prolog contains a schema import."}
17
+ ,{"XPST0010", ueca_ROLLBACK_TRN, "An implementation must raise a static error if it encounters a reference to an axis that it does not support."}
18
+ ,{"XQST0012", ueca_ROLLBACK_TRN, "It is a static error if the set of definitions contained in all schemas imported by a Prolog do not satisfy the conditions for schema validity specified in Sections 3 and 5 of [XML Schema] Part 1--i.e., each definition must be valid, complete, and unique."}
19
+ ,{"XQST0013", ueca_ROLLBACK_TRN, "It is a static error if an implementation recognizes a pragma but determines that its content is invalid."}
20
+ ,{"XQST0014", ueca_ROLLBACK_TRN, "(Not currently used.)"}
21
+ ,{"XQST0015", ueca_ROLLBACK_TRN, "(Not currently used.)"}
22
+ ,{"XQST0016", ueca_ROLLBACK_TRN, "An implementation that does not support the Module Feature raises a static error if it encounters a module declaration or a module import."}
23
+ ,{"XPST0017", ueca_ROLLBACK_TRN, "It is a static error if the expanded QName and number of arguments in a function call do not match the name and arity of a function signature in the static context."}
24
+ ,{"XPTY0018", ueca_ROLLBACK_TRN, "It is a type error if the result of the last step in a path expression contains both nodes and atomic values."}
25
+ ,{"XPTY0019", ueca_ROLLBACK_TRN, "It is a type error if the result of a step (other than the last step) in a path expression contains an atomic value."}
26
+ ,{"XPTY0020", ueca_ROLLBACK_TRN, "It is a type error if, in an axis step, the context item is not a node."}
27
+ ,{"XPDY0021", ueca_ROLLBACK_TRN, "(Not currently used.)"}
28
+ ,{"XQST0022", ueca_ROLLBACK_TRN, "It is a static error if the value of a namespace declaration attribute is not a URILiteral."}
29
+ ,{"XQTY0023", ueca_ROLLBACK_TRN, "(Not currently used.)"}
30
+ ,{"XQTY0024", ueca_ROLLBACK_TRN, "It is a type error if the content sequence in an element constructor contains an attribute node following a node that is not an attribute node."}
31
+ ,{"XQDY0025", ueca_ROLLBACK_TRN, "It is a dynamic error if any attribute of a constructed element does not have a name that is distinct from the names of all other attributes of the constructed element."}
32
+ ,{"XQDY0026", ueca_ROLLBACK_TRN, "It is a dynamic error if the result of the content expression of a computed processing instruction constructor contains the string \"?>\"."}
33
+ ,{"XQDY0027", ueca_ROLLBACK_TRN, "In a validate expression, it is a dynamic error if the root element information item in the PSVI resulting from validation does not have the expected validity property: valid if validation mode is strict, or either valid or notKnown if validation mode is lax."}
34
+ ,{"XQTY0028", ueca_ROLLBACK_TRN, "(Not currently used.)"}
35
+ ,{"XQDY0029", ueca_ROLLBACK_TRN, "(Not currently used.)"}
36
+ ,{"XQTY0030", ueca_ROLLBACK_TRN, "It is a type error if the argument of a validate expression does not evaluate to exactly one document or element node."}
37
+ ,{"XQST0031", ueca_ROLLBACK_TRN, "It is a static error if the version number specified in a version declaration is not supported by the implementation."}
38
+ ,{"XQST0032", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one base URI declaration."}
39
+ ,{"XQST0033", ueca_ROLLBACK_TRN, "It is a static error if a Prolog contains multiple declarations for the same namespace prefix."}
40
+ ,{"XQST0034", ueca_ROLLBACK_TRN, "It is a static error if multiple functions declared or imported by a module have the number of arguments and their expanded QNames are equal (as defined by the eq operator)."}
41
+ ,{"XQST0035", ueca_ROLLBACK_TRN, "It is a static error to import two schema components that both define the same name in the same symbol space and in the same scope."}
42
+ ,{"XQST0036", ueca_ROLLBACK_TRN, "It is a static error to import a module if the importing module's in-scope schema types do not include definitions for the schema type names that appear in the declarations of variables and functions (whether in an argument type or return type) that are present in the imported module and are referenced in the importing module."}
43
+ ,{"XQST0037", ueca_ROLLBACK_TRN, "(Not currently used.)"}
44
+ ,{"XQST0038", ueca_ROLLBACK_TRN, "It is a static error if a Prolog contains more than one default collation declaration, or the value specified by a default collation declaration is not present in statically known collations."}
45
+ ,{"XQST0039", ueca_ROLLBACK_TRN, "It is a static error for a function declaration to have more than one parameter with the same name."}
46
+ ,{"XQST0040", ueca_ROLLBACK_TRN, "It is a static error if the attributes specified by a direct element constructor do not have distinct expanded QNames."}
47
+ ,{"XQDY0041", ueca_ROLLBACK_TRN, "It is a dynamic error if the value of the name expression in a computed processing instruction constructor cannot be cast to the type xs:NCName."}
48
+ ,{"XQST0042", ueca_ROLLBACK_TRN, "(Not currently used.)"}
49
+ ,{"XQST0043", ueca_ROLLBACK_TRN, "(Not currently used.)"}
50
+ ,{"XQDY0044", ueca_ROLLBACK_TRN, "It is a dynamic error the node-name of a node constructed by a computed attribute constructor has any of the following properties: its namespace prefix is xmlns, it has no namespace prefix and its local name is xmlns, its namespace URI is http://www.w3.org/2000/xmlns/, its namespace prefix is xml and its namespace URI is not http://www.w3.org/XML/1998/namespace, its namespace prefix is other than xml and its namespace URI is http://www.w3.org/XML/1998/namespace."}
51
+ ,{"XQST0045", ueca_ROLLBACK_TRN, "It is a static error if the function name in a function declaration is in one of the following namespaces: http://www.w3.org/XML/1998/namespace, http://www.w3.org/2001/XMLSchema, http://www.w3.org/2001/XMLSchema-instance, http://www.w3.org/2005/xpath-functions, http://www.w3.org/2005/xpath-datatypes."}
52
+ ,{"XQST0046", ueca_ROLLBACK_TRN, "An implementation MAY raise a static error if the value of a URILiteral is of nonzero length and is not in the lexical space of xs:anyURI, or if it is a string that represents a \"relative reference\" as defined in [RFC3986]."}
53
+ ,{"XQST0047", ueca_ROLLBACK_TRN, "It is a static error if multiple module imports in the same Prolog specify the same target namespace."}
54
+ ,{"XQST0048", ueca_ROLLBACK_TRN, "It is a static error if a function or variable declared in a library module is not in the target namespace of the library module."}
55
+ ,{"XQST0049", ueca_ROLLBACK_TRN, "It is a static error if two or more variables declared or imported by a module have equal expanded QNames (as defined by the eq operator.)"}
56
+ ,{"XPDY0050", ueca_ROLLBACK_TRN, "It is a dynamic error if the dynamic type of the operand of a treat expression does not match the sequence type specified by the treat expression. This error might also be raised by a path expression beginning with \"/\" or \"//\" if the context node is not in a tree that is rooted at a document node. This is because a leading \"/\" or \"//\" in a path expression is an abbreviation for an initial step that includes the clause treat as document-node()."}
57
+ ,{"XPST0051", ueca_ROLLBACK_TRN, "It is a static error if a QName that is used as an AtomicType in a SequenceType is not defined in the in-scope schema types as an atomic type."}
58
+ ,{"XQDY0052", ueca_ROLLBACK_TRN, "(Not currently used.)"}
59
+ ,{"XQST0053", ueca_ROLLBACK_TRN, "(Not currently used.)"}
60
+ ,{"XQST0054", ueca_ROLLBACK_TRN, "It is a static error if the initializing expression in a variable declaration cannot be executed because of a circularity (for example, the expression depends on a function that in turn depends on the value of the initialized variable)."}
61
+ ,{"XQST0055", ueca_ROLLBACK_TRN, "It is a static error if a Prolog contains more than one copy-namespaces declaration."}
62
+ ,{"XQST0056", ueca_ROLLBACK_TRN, "(Not currently used.)"}
63
+ ,{"XQST0057", ueca_ROLLBACK_TRN, "It is a static error if a schema import binds a namespace prefix but does not specify a target namespace other than a zero-length string."}
64
+ ,{"XQST0058", ueca_ROLLBACK_TRN, "It is a static error if multiple schema imports specify the same target namespace."}
65
+ ,{"XQST0059", ueca_ROLLBACK_TRN, "It is a static error if an implementation is unable to process a schema or module import by finding a schema or module with the specified target namespace."}
66
+ ,{"XQST0060", ueca_ROLLBACK_TRN, "It is a static error if the name of a function in a function declaration is not in a namespace (expanded QName has a null namespace URI)."}
67
+ ,{"XQDY0061", ueca_ROLLBACK_TRN, "It is a dynamic error if the operand of a validate expression is a document node whose children do not consist of exactly one element node and zero or more comment and processing instruction nodes, in any order."}
68
+ ,{"XQDY0062", ueca_ROLLBACK_TRN, "(Not currently used.)"}
69
+ ,{"XQST0063", ueca_ROLLBACK_TRN, "(Not currently used.)"}
70
+ ,{"XQDY0064", ueca_ROLLBACK_TRN, "It is a dynamic error if the value of the name expression in a computed processing instruction constructor is equal to \"XML\" (in any combination of upper and lower case)."}
71
+ ,{"XQST0065", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one ordering mode declaration."}
72
+ ,{"XQST0066", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one default element/type namespace declaration, or more than one default function namespace declaration."}
73
+ ,{"XQST0067", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one construction declaration."}
74
+ ,{"XQST0068", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one boundary-space declaration."}
75
+ ,{"XQST0069", ueca_ROLLBACK_TRN, "A static error is raised if a Prolog contains more than one empty order declaration."}
76
+ ,{"XQST0070", ueca_ROLLBACK_TRN, "A static error is raised if one of the predefined prefixes xml or xmlns appears in a namespace declaration, or if any of the following conditions is statically detected in any expression or declaration: the prefix xml is bound to some namespace URI other than http://www.w3.org/XML/1998/namespace, a prefix other than xml is bound to the namespace URI http://www.w3.org/XML/1998/namespace, the prefix xmlns is bound to any namespace URI, a prefix other than xmlns is bound to the namespace URI http://www.w3.org/2000/xmlns/."}
77
+ ,{"XQST0071", ueca_ROLLBACK_TRN, "A static error is raised if the namespace declaration attributes of a direct element constructor do not have distinct names."}
78
+ ,{"XQDY0072", ueca_ROLLBACK_TRN, "It is a dynamic error if the result of the content expression of a computed comment constructor contains two adjacent hyphens or ends with a hyphen."}
79
+ ,{"XQST0073", ueca_ROLLBACK_TRN, "It is a static error if the graph of module imports contains a cycle (that is, if there exists a sequence of modules M1 ... Mn such that each Mi imports Mi+1 and Mn imports M1), unless all the modules in the cycle share a common namespace."}
80
+ ,{"XQDY0074", ueca_ROLLBACK_TRN, "It is a dynamic error if the value of the name expression in a computed element or attribute constructor cannot be converted to an expanded QName (for example, because it contains a namespace prefix not found in statically known namespaces.)"}
81
+ ,{"XQST0075", ueca_ROLLBACK_TRN, "An implementation that does not support the Validation Feature must raise a static error if it encounters a validate expression."}
82
+ ,{"XQST0076", ueca_ROLLBACK_TRN, "It is a static error if a collation subclause in an order by clause of a FLWOR expression does not identify a collation that is present in statically known collations."}
83
+ ,{"XQST0077", ueca_ROLLBACK_TRN, "(Not currently used.)"}
84
+ ,{"XQST0078", ueca_ROLLBACK_TRN, "(Not currently used.)"}
85
+ ,{"XQST0079", ueca_ROLLBACK_TRN, "It is a static error if an extension expression contains neither a pragma that is recognized by the implementation nor an expression enclosed in curly braces."}
86
+ ,{"XPST0080", ueca_ROLLBACK_TRN, "The target type of a cast or castable expression must be an atomic type that is in the in-scope schema types and is not xs:NOTATION or xs:anyAtomicType, optionally followed by the occurrence indicator \"?\"; otherwise a static error is raised."}
87
+ ,{"XPST0081", ueca_ROLLBACK_TRN, "It is a static error if a QName used in a query contains a namespace prefix that cannot be expanded into a namespace URI by using the statically known namespaces."}
88
+ ,{"XQST0082", ueca_ROLLBACK_TRN, "(Not currently used.)"}
89
+ ,{"XPST0083", ueca_ROLLBACK_TRN, "(Not currently used.)"}
90
+ ,{"XQDY0084", ueca_ROLLBACK_TRN, "It is a dynamic error if the element validated by a validate statement does not have a top-level element declaration in the in-scope element declarations, if validation mode is strict."}
91
+ ,{"XQST0085", ueca_ROLLBACK_TRN, "It is a static error if the namespace URI in a namespace declaration attribute is a zero-length string, and the implementation does not support [XML Names 1.1]."}
92
+ ,{"XQTY0086", ueca_ROLLBACK_TRN, "It is a type error if the typed value of a copied element or attribute node is namespace-sensitive when construction mode is preserve and copy-namespaces mode is no-preserve."}
93
+ ,{"XQST0087", ueca_ROLLBACK_TRN, "It is a static error if the encoding specified in a Version Declaration does not conform to the definition of EncName specified in [XML 1.0]."}
94
+ ,{"XQST0088", ueca_ROLLBACK_TRN, "It is a static error if the literal that specifies the target namespace in a module import or a module declaration is of zero length."}
95
+ ,{"XQST0089", ueca_ROLLBACK_TRN, "It is a static error if a variable bound in a for clause of a FLWOR expression, and its associated positional variable, do not have distinct names (expanded QNames)."}
96
+ ,{"XQST0090", ueca_ROLLBACK_TRN, "It is a static error if a character reference does not identify a valid character in the version of XML that is in use."}
97
+ ,{"XQST0093", ueca_ROLLBACK_TRN, "It is a static error to import a module M1 if there exists a sequence of modules M1 ... Mi ... M1 such that each module directly depends on the next module in the sequence."}
98
+ ,{"FOER0000", ueca_ROLLBACK_TRN, "Unidentified error."}
99
+ ,{"FOAR0001", ueca_ROLLBACK_TRN, "Division by zero. This error is raised whenever an attempt is made to divide by zero."}
100
+ ,{"FOAR0002", ueca_ROLLBACK_TRN, "Numeric operation overflow/underflow. This error is raised whenever numeric operations result in an overflow or underflow."}
101
+ ,{"FOCA0001", ueca_ROLLBACK_TRN, "Input value too large for decimal. "}
102
+ ,{"FOCA0002", ueca_ROLLBACK_TRN, "Invalid lexical value. "}
103
+ ,{"FOCA0003", ueca_ROLLBACK_TRN, "Input value too large for integer. "}
104
+ ,{"FOCA0005", ueca_ROLLBACK_TRN, "NaN supplied as float/double value. "}
105
+ ,{"FOCA0006", ueca_ROLLBACK_TRN, "String to be cast to decimal has too many digits of precision. "}
106
+ ,{"FOCH0001", ueca_ROLLBACK_TRN, "Code point not valid. "}
107
+ ,{"FOCH0002", ueca_ROLLBACK_TRN, "Unsupported collation. "}
108
+ ,{"FOCH0003", ueca_ROLLBACK_TRN, "Unsupported normalization form. "}
109
+ ,{"FOCH0004", ueca_ROLLBACK_TRN, "Collation does not support collation units. "}
110
+ ,{"FODC0001", ueca_ROLLBACK_TRN, "No context document. "}
111
+ ,{"FODC0002", ueca_ROLLBACK_TRN, "Error retrieving resource. "}
112
+ ,{"FODC0003", ueca_ROLLBACK_TRN, "Function stability not defined. "}
113
+ ,{"FODC0004", ueca_ROLLBACK_TRN, "Invalid argument to fn:collection. "}
114
+ ,{"FODC0005", ueca_ROLLBACK_TRN, "Invalid argument to fn:doc. "}
115
+ ,{"FODT0001", ueca_ROLLBACK_TRN, "Overflow/underflow in date/time operation. "}
116
+ ,{"FODT0002", ueca_ROLLBACK_TRN, "Overflow/underflow in duration operation. "}
117
+ ,{"FODT0003", ueca_ROLLBACK_TRN, "Invalid timezone value. "}
118
+ ,{"FONS0004", ueca_ROLLBACK_TRN, "No namespace found for prefix. "}
119
+ ,{"FONS0005", ueca_ROLLBACK_TRN, "Base-uri not defined in the static context. "}
120
+ ,{"FORG0001", ueca_ROLLBACK_TRN, "Invalid value for cast/constructor. "}
121
+ ,{"FORG0002", ueca_ROLLBACK_TRN, "Invalid argument to URL resolve algorithm. "}
122
+ ,{"FORG0003", ueca_ROLLBACK_TRN, "fn:zero-or-one called with a sequence containing more than one item. "}
123
+ ,{"FORG0004", ueca_ROLLBACK_TRN, "fn:one-or-more called with a sequence containing no items. "}
124
+ ,{"FORG0005", ueca_ROLLBACK_TRN, "fn:exactly-one called with a sequence containing zero or more than one item. "}
125
+ ,{"FORG0006", ueca_ROLLBACK_TRN, "Invalid argument type. "}
126
+ ,{"FORG0008", ueca_ROLLBACK_TRN, "Both arguments to fn:dateTime have a specified timezone. "}
127
+ ,{"FORG0009", ueca_ROLLBACK_TRN, "Error in resolving a relative URI against a base URI in fn:resolve-uri. "}
128
+ ,{"FORX0001", ueca_ROLLBACK_TRN, "Invalid regular expression flags. "}
129
+ ,{"FORX0002", ueca_ROLLBACK_TRN, "Invalid regular expression. "}
130
+ ,{"FORX0003", ueca_ROLLBACK_TRN, "Regular expression matches zero-length string. "}
131
+ ,{"FORX0004", ueca_ROLLBACK_TRN, "Invalid replacement string. "}
132
+ ,{"FOTY0012", ueca_ROLLBACK_TRN, "Argument node does not have a typed value. "}
133
+ ,{"SE1001", ueca_ROLLBACK_TRN, "Physical plan executor stack overflow."}
134
+ ,{"SE1002", ueca_ROLLBACK_TRN, "Feature is not implemented."}
135
+ ,{"SE1003", ueca_ROLLBACK_TRN, "Sedna internal error."}
136
+ ,{"SE1004", ueca_ROLLBACK_TRN, "Wrong physical plan representation."}
137
+ ,{"SE1005", ueca_ROLLBACK_TRN, "Scheme parser error."}
138
+ ,{"SE1006", ueca_ROLLBACK_TRN, "No document with this name in the specified collection."}
139
+ ,{"SE1007", ueca_ROLLBACK_TRN, "Invalid position in fn:item-at."}
140
+ ,{"SE1008", ueca_ROLLBACK_TRN, "Sedna index subsystem error."}
141
+ ,{"SE1009", ueca_ROLLBACK_TRN, "Buffer overflow."}
142
+ ,{"SE1011", ueca_ROLLBACK_TRN, "Data file has reached its maximum size."}
143
+ ,{"SE1012", ueca_ROLLBACK_TRN, "Temporary file has reached its maximum size."}
144
+ ,{"SE1013", ueca_ROLLBACK_TRN, "Cannot extend data file."}
145
+ ,{"SE1014", ueca_ROLLBACK_TRN, "Cannot extend temporary file."}
146
+ ,{"SE1015", ueca_ROLLBACK_TRN, "There is no enough memory to initialize buffers."}
147
+ ,{"SE1016", ueca_ROLLBACK_TRN, "Cannot lock buffer memory."}
148
+ ,{"SE1017", ueca_ROLLBACK_TRN, "Cannot mount ramfs."}
149
+ ,{"SE1018", ueca_ROLLBACK_TRN, "Transaction with this id already exists."}
150
+ ,{"SE1019", ueca_ROLLBACK_TRN, "There is no transaction with this id."}
151
+ ,{"SE1020", ueca_ROLLBACK_TRN, "Transaction's limit on locked blocks in memory is exceeded."}
152
+ ,{"SE1021", ueca_ROLLBACK_TRN, "Cannot lock block in memory because it is not in memory."}
153
+ ,{"SE1022", ueca_ROLLBACK_TRN, "Cannot unlock block because it is not in memory."}
154
+ ,{"SE1023", ueca_ROLLBACK_TRN, "Unexpected arguments in call to SM."}
155
+ ,{"SE1031", ueca_ROLLBACK_TRN, "Cannot allocate enough address space segment."}
156
+ ,{"SE1032", ueca_ROLLBACK_TRN, "Error setting up alternate stack."}
157
+ ,{"SE1033", ueca_ROLLBACK_TRN, "Error setting up signal handler."}
158
+ ,{"SE1034", ueca_ROLLBACK_TRN, "Connection with SM lost."}
159
+ ,{"SE1035", ueca_ROLLBACK_TRN, "Memory mapping error."}
160
+ ,{"SE1036", ueca_ROLLBACK_TRN, "Cannot (un)swap blocks (address is out of bounds)."}
161
+ ,{"SE1037", ueca_ROLLBACK_TRN, "Cannot open buffer memory."}
162
+ ,{"SE1038", ueca_ROLLBACK_TRN, "Cannot close buffer memory."}
163
+ ,{"SE1039", ueca_ROLLBACK_TRN, "Error waiting for VMM thread to shutdown."}
164
+ ,{"SE1040", ueca_ROLLBACK_TRN, "Cannot determine enough address space segment."}
165
+ ,{"SE1051", ueca_ROLLBACK_TRN, "Sedna query optimizer error."}
166
+ ,{"SE1061", ueca_ROLLBACK_TRN, "No index with this name."}
167
+ ,{"SE1071", ueca_ROLLBACK_TRN, "Expecting arguments of type xs:string."}
168
+ ,{"SE1072", ueca_ROLLBACK_TRN, "Modules to be loaded belong to different namespaces."}
169
+ ,{"SE1073", ueca_ROLLBACK_TRN, "Module with the given URI already loaded to the database."}
170
+ ,{"SE1074", ueca_ROLLBACK_TRN, "Unable to drop a module - no module with the given URI."}
171
+ ,{"SE2001", ueca_ROLLBACK_TRN, "Document with the same name already exists."}
172
+ ,{"SE2002", ueca_ROLLBACK_TRN, "Collection with the same name already exists."}
173
+ ,{"SE2003", ueca_ROLLBACK_TRN, "No collection with this name."}
174
+ ,{"SE2004", ueca_ROLLBACK_TRN, "Document with the same name already exists in the collection."}
175
+ ,{"SE2005", ueca_ROLLBACK_TRN, "Parse error at "}
176
+ ,{"SE2006", ueca_ROLLBACK_TRN, "No document with this name."}
177
+ ,{"SE2007", ueca_ROLLBACK_TRN, "Left sibling is not an attribute"}
178
+ ,{"SE2008", ueca_ROLLBACK_TRN, "Valid URI expected."}
179
+ ,{"SE2009", ueca_ROLLBACK_TRN, "Size of text should be greater then zero"}
180
+ ,{"SE2010", ueca_ROLLBACK_TRN, "Invalid result of the delete undeep argument: sequence contains non-persistent or document nodes"}
181
+ ,{"SE2011", ueca_ROLLBACK_TRN, "Invalid result of the delete argument: sequence contains atomic values"}
182
+ ,{"SE2012", ueca_ROLLBACK_TRN, "Invalid result of the delete argument: sequence contains temporary nodes "}
183
+ ,{"SE2013", ueca_ROLLBACK_TRN, "Invalid result of the second insert argument: sequence contains atomic values or temporary nodes"}
184
+ ,{"SE2014", ueca_ROLLBACK_TRN, "Invalid result of the first insert argument: bad sequence of nodes"}
185
+ ,{"SE2015", ueca_ROLLBACK_TRN, "Invalid result of the first insert argument: sequence contains atomic values"}
186
+ ,{"SE2016", ueca_ROLLBACK_TRN, "Attempt to insert element before attribute"}
187
+ ,{"SE2017", ueca_ROLLBACK_TRN, "Attempt to insert the node to it's descendant"}
188
+ ,{"SE2018", ueca_ROLLBACK_TRN, "Invalid result of the second insert argument: sequence contains either attribute, namespace, comment, PI or temporary node"}
189
+ ,{"SE2019", ueca_ROLLBACK_TRN, "Invalid result of the second insert argument: sequence contains atomic values"}
190
+ ,{"SE2020", ueca_ROLLBACK_TRN, "Invalid result of the update argument: sequence contains atomic values or one of these nodes: tempory, text, comment,PI,namespace,document"}
191
+ ,{"SE2021", ueca_ROLLBACK_TRN, "Invalid result of the update argument: sequence contains atomic values"}
192
+ ,{"SE2022", ueca_ROLLBACK_TRN, "this node test is not yet implemented"}
193
+ ,{"SE2023", ueca_ROLLBACK_TRN, "[nid_assign] The length of prefix exceeds PSTRMAXSIZE"}
194
+ ,{"SE2024", ueca_ROLLBACK_TRN, "trying to store string exceeding maximum permited size"}
195
+ ,{"SE2025", ueca_ROLLBACK_TRN, "checkTreeConsistency:Ancestor-descendant error"}
196
+ ,{"SE2026", ueca_ROLLBACK_TRN, "checkTreeConsistency:First child pointer"}
197
+ ,{"SE2027", ueca_ROLLBACK_TRN, "checkTreeConsistency:sibling pointer errors"}
198
+ ,{"SE2028", ueca_ROLLBACK_TRN, "checkTreeConsistency:nid comparison error"}
199
+ ,{"SE2029", ueca_ROLLBACK_TRN, "checkTreeConsistency:wrong descriptor's order"}
200
+ ,{"SE2030", ueca_ROLLBACK_TRN, "checkTreeConsistency:Bad indirection table"}
201
+ ,{"SE2031", ueca_ROLLBACK_TRN, "atomic value as input for test engine"}
202
+ ,{"SE2032", ueca_ROLLBACK_TRN, "trying to create mixed content in the element whose value is used as key"}
203
+ ,{"SE2033", ueca_ROLLBACK_TRN, "Index with the same name already exists."}
204
+ ,{"SE2034", ueca_ROLLBACK_TRN, "Invalid index type (xs:string, xs:integer, xs:float, xs:double, xs:date, xs:time, xs:dateTime, xs_yearMonthDuration, xs_dateTimeDuration are supported)."}
205
+ ,{"SE2035", ueca_ROLLBACK_TRN, "Invalid mode in index_scan_between function"}
206
+ ,{"SE2036", ueca_ROLLBACK_TRN, "Document node deletion is prohibited by this function use DROP DOCUMENT in metadata API"}
207
+ ,{"SE2037", ueca_ROLLBACK_TRN, "The size of string is limited by 4 GB"}
208
+ ,{"SE2038", ueca_ROLLBACK_TRN, "An attempt to insert attribute node after element"}
209
+ ,{"SE2100", ueca_ROLLBACK_TRN, "SQL:Bad connect option "}
210
+ ,{"SE2101", ueca_ROLLBACK_TRN, "SQL:Bad handle"}
211
+ ,{"SE2102", ueca_ROLLBACK_TRN, "SQL:Failed to get executor"}
212
+ ,{"SE2103", ueca_ROLLBACK_TRN, "SQL:Unknown handle type"}
213
+ ,{"SE2104", ueca_ROLLBACK_TRN, "SQL:Invalid handle type"}
214
+ ,{"SE2105", ueca_ROLLBACK_TRN, "SQL:Failed to prepare statement"}
215
+ ,{"SE2106", ueca_ROLLBACK_TRN, "SQL:Failed to execute prepared statement"}
216
+ ,{"SE2107", ueca_ROLLBACK_TRN, "SQL:Not enough parameters for prepared statement"}
217
+ ,{"SE2108", ueca_ROLLBACK_TRN, "SQL:Disconnect failed"}
218
+ ,{"SE2109", ueca_ROLLBACK_TRN, "SQL:Commit failed"}
219
+ ,{"SE2110", ueca_ROLLBACK_TRN, "SQL:Rollback failed"}
220
+ ,{"SE2111", ueca_ROLLBACK_TRN, "SQL:Connect failed"}
221
+ ,{"SE2112", ueca_ROLLBACK_TRN, "SQL:Execute failed"}
222
+ ,{"SE2113", ueca_ROLLBACK_TRN, "SQL Connection support disabled"}
223
+ ,{"SE2200", ueca_ROLLBACK_TRN, "External function initialization error"}
224
+ ,{"SE2201", ueca_ROLLBACK_TRN, "External function invocation error"}
225
+ ,{"SE2202", ueca_ROLLBACK_TRN, "External function de-initialization error"}
226
+ ,{"SE2203", ueca_ROLLBACK_TRN, "External function load error"}
227
+ ,{"SE2999", ueca_ROLLBACK_TRN, "Sedna Client-Server Protocol used in your application does not support this feature. Use protocol of recent version."}
228
+ ,{"SE3000", ueca_ROLLBACK_TRN, "Failed to clean up socket library."}
229
+ ,{"SE3001", ueca_ROLLBACK_TRN, "Failed to initialize a socket."}
230
+ ,{"SE3002", ueca_ROLLBACK_TRN, "Failed to get local host name."}
231
+ ,{"SE3003", ueca_ROLLBACK_TRN, "Failed to connect the host specified."}
232
+ ,{"SE3004", ueca_ROLLBACK_TRN, "Failed to bind the socket to the port specified."}
233
+ ,{"SE3005", ueca_ROLLBACK_TRN, "Failed to set the socket into the listening mode"}
234
+ ,{"SE3006", ueca_ROLLBACK_TRN, "Failed to send a message."}
235
+ ,{"SE3007", ueca_ROLLBACK_TRN, "Failed to receive a message."}
236
+ ,{"SE3008", ueca_ROLLBACK_TRN, "Unknown message from server."}
237
+ ,{"SE3009", ueca_ROLLBACK_TRN, "Unknown message from client."}
238
+ ,{"SE3010", ueca_ROLLBACK_TRN, "Can't duplicate socket handle."}
239
+ ,{"SE3011", ueca_ROLLBACK_TRN, "Failed to close a socket."}
240
+ ,{"SE3012", ueca_ROLLBACK_TRN, "Message length exceeds available size."}
241
+ ,{"SE3013", ueca_ROLLBACK_TRN, "Can't get file from client to be loaded."}
242
+ ,{"SE3014", ueca_ROLLBACK_TRN, "Wrong client-server protocol version."}
243
+ ,{"SE3015", ueca_ROLLBACK_TRN, "Too long login/password/db_name."}
244
+ ,{"SE3016", ueca_ROLLBACK_TRN, "Failed to initialize socket library."}
245
+ ,{"SE3017", ueca_ROLLBACK_TRN, "Can't open file with data to load."}
246
+ ,{"SE3018", ueca_ROLLBACK_TRN, "Can't read file with data to load."}
247
+ ,{"SE3019", ueca_ROLLBACK_TRN, "Can't close file with data to load."}
248
+ ,{"SE3020", ueca_ROLLBACK_TRN, "Can't close tmp file."}
249
+ ,{"SE3021", ueca_ROLLBACK_TRN, "Can't delete tmp file."}
250
+ ,{"SE3022", ueca_ROLLBACK_TRN, "Invalid argument."}
251
+ ,{"SE3023", ueca_ROLLBACK_TRN, "dbname is too long."}
252
+ ,{"SE3024", ueca_ROLLBACK_TRN, "login is too long."}
253
+ ,{"SE3025", ueca_ROLLBACK_TRN, "password is too long."}
254
+ ,{"SE3026", ueca_ROLLBACK_TRN, "url is too long."}
255
+ ,{"SE3027", ueca_ROLLBACK_TRN, "Failed to set socket option."}
256
+ ,{"SE3028", ueca_ROLLBACK_TRN, "Connection with server is closed or have not been established yet."}
257
+ ,{"SE3029", ueca_ROLLBACK_TRN, "This function call is prohibited as the connection is in the autocommit mode."}
258
+ ,{"SE3030", ueca_ROLLBACK_TRN, "Failed to initialize SSMMsg service (message service)."}
259
+ ,{"SE3031", ueca_ROLLBACK_TRN, "Failed to serve clients via SSMMsg service (message service)."}
260
+ ,{"SE3032", ueca_ROLLBACK_TRN, "Failed to stop serve clients via SSMMsg service (message service)."}
261
+ ,{"SE3033", ueca_ROLLBACK_TRN, "Failed to shutdown SSMMsg service (message service)."}
262
+ ,{"SE3034", ueca_ROLLBACK_TRN, "Can't send message via SSMMsg"}
263
+ ,{"SE3040", ueca_ROLLBACK_TRN, "Connection with Gov lost."}
264
+ ,{"SE3043", ueca_ROLLBACK_TRN, "Can not register session in Gov."}
265
+ ,{"SE3044", ueca_ROLLBACK_TRN, "Can not unregister session in Gov."}
266
+ ,{"SE3045", ueca_ROLLBACK_TRN, "Can not register SM in Gov."}
267
+ ,{"SE3046", ueca_ROLLBACK_TRN, "Can't create new session (sessions number exceeds permissible threshold )"}
268
+ ,{"SE3047", ueca_ROLLBACK_TRN, "Can't open session (client failed to send authentication parameters on time)"}
269
+ ,{"SE3051", ueca_ROLLBACK_TRN, "Failed to set up ctrl handler."}
270
+ ,{"SE3052", ueca_ROLLBACK_TRN, "Failed to run se_trn process."}
271
+ ,{"SE3053", ueca_ROLLBACK_TRN, "Authentication failed."}
272
+ ,{"SE3054", ueca_ROLLBACK_TRN, "Can't run session: system is busy"}
273
+ ,{"SE3060", ueca_ROLLBACK_TRN, "Failed to create a new ACL."}
274
+ ,{"SE3061", ueca_ROLLBACK_TRN, "Failed to set DACL to the data file security descriptor."}
275
+ ,{"SE3062", ueca_ROLLBACK_TRN, "Failed to open process token."}
276
+ ,{"SE3063", ueca_ROLLBACK_TRN, "Failed to release ACL."}
277
+ ,{"SE3064", ueca_ROLLBACK_TRN, "You do not have enough permissions (you have to be root in UNIX and a member of Administrators group in Windows to run the application)."}
278
+ ,{"SE3065", ueca_ROLLBACK_TRN, "You do not have necessary privileges on this database object."}
279
+ ,{"SE3066", ueca_ROLLBACK_TRN, "Failed to process authorization."}
280
+ ,{"SE3067", ueca_ROLLBACK_TRN, "User name is not specified."}
281
+ ,{"SE3068", ueca_ROLLBACK_TRN, "This statement is not supported because Sedna' database security level is \"off\". (To support this statement create database with -db-security option \"authentication\".)"}
282
+ ,{"SE3069", ueca_ROLLBACK_TRN, "Wrong privilege name."}
283
+ ,{"SE3070", ueca_ROLLBACK_TRN, "Multiple parameters parted by commas are not supported in the current version of Sedna."}
284
+ ,{"SE3071", ueca_ROLLBACK_TRN, "Failed to load authorization metadata."}
285
+ ,{"SE3072", ueca_ROLLBACK_TRN, "User does not have privilege."}
286
+ ,{"SE3073", ueca_ROLLBACK_TRN, "User is not allowed to grant this privilege."}
287
+ ,{"SE3074", ueca_ROLLBACK_TRN, "User is not allowed to grant this role."}
288
+ ,{"SE3075", ueca_ROLLBACK_TRN, "User is not allowed to revoke this privilege, or the grantee does not have this privilege."}
289
+ ,{"SE3076", ueca_ROLLBACK_TRN, "User is not allowed to revoke this role, or the grantee does not have this role."}
290
+ ,{"SE3077", ueca_ROLLBACK_TRN, "User is not allowed to alter specified user."}
291
+ ,{"SE3078", ueca_ROLLBACK_TRN, "User is not allowed to drop specified user."}
292
+ ,{"SE3079", ueca_ROLLBACK_TRN, "User with this name already exists."}
293
+ ,{"SE3080", ueca_ROLLBACK_TRN, "Role with this name already exists."}
294
+ ,{"SE3200", ueca_ROLLBACK_TRN, "Trigger with this name already exists."}
295
+ ,{"SE3201", ueca_ROLLBACK_TRN, "Failed to execute trigger action."}
296
+ ,{"SE3202", ueca_ROLLBACK_TRN, "Wrong trigger action parameter type."}
297
+ ,{"SE3203", ueca_ROLLBACK_TRN, "Trigger action results in an item that is not a node."}
298
+ ,{"SE3204", ueca_ROLLBACK_TRN, "Trigger action must always return a result."}
299
+ ,{"SE3205", ueca_ROLLBACK_TRN, "Trigger action tries to update a document/collection that is currently updating by the outer update statement."}
300
+ ,{"SE3206", ueca_ROLLBACK_TRN, "Cannot execute trigger action, since current cascade level exceeds permissible threshold."}
301
+ ,{"SE4001", ueca_ROLLBACK_TRN, "XQuery parser internal error."}
302
+ ,{"SE4002", ueca_ROLLBACK_TRN, "Unexpected type of the query given."}
303
+ ,{"SE4003", ueca_ROLLBACK_TRN, "Unexpected number of statements given "}
304
+ ,{"SE4004", ueca_ROLLBACK_TRN, "Scheme part unknown error "}
305
+ ,{"SE4005", ueca_ROLLBACK_TRN, "Invalid list after scheme processing"}
306
+ ,{"SE4006", ueca_ROLLBACK_TRN, "Static query analisis error"}
307
+ ,{"SE4007", ueca_ROLLBACK_TRN, "Too long statement"}
308
+ ,{"SE4008", ueca_ROLLBACK_TRN, "Wrong logical plan representation"}
309
+ ,{"SE4009", ueca_ROLLBACK_TRN, "Too long input query"}
310
+ ,{"SE4010", ueca_ROLLBACK_TRN, "Can't create semaphore"}
311
+ ,{"SE4011", ueca_ROLLBACK_TRN, "Can't release semaphore"}
312
+ ,{"SE4012", ueca_ROLLBACK_TRN, "Can't open semaphore"}
313
+ ,{"SE4013", ueca_ROLLBACK_TRN, "Can't close semaphore"}
314
+ ,{"SE4014", ueca_ROLLBACK_TRN, "Can't up semaphore"}
315
+ ,{"SE4015", ueca_ROLLBACK_TRN, "Can't down semaphore"}
316
+ ,{"SE4016", ueca_ROLLBACK_TRN, "Can't create shared memory"}
317
+ ,{"SE4020", ueca_ROLLBACK_TRN, "Can't release shared memory"}
318
+ ,{"SE4021", ueca_ROLLBACK_TRN, "Can't open shared memory"}
319
+ ,{"SE4022", ueca_ROLLBACK_TRN, "Can't close shared memory"}
320
+ ,{"SE4023", ueca_ROLLBACK_TRN, "Can't attach to shared memory"}
321
+ ,{"SE4024", ueca_ROLLBACK_TRN, "Can't deattach from shared memory"}
322
+ ,{"SE4025", ueca_ROLLBACK_TRN, "Can't create pipe"}
323
+ ,{"SE4030", ueca_ROLLBACK_TRN, "Can't close pipe"}
324
+ ,{"SE4031", ueca_ROLLBACK_TRN, "Can't read pipe"}
325
+ ,{"SE4032", ueca_ROLLBACK_TRN, "Can't write pipe"}
326
+ ,{"SE4040", ueca_ROLLBACK_TRN, "Can't create file"}
327
+ ,{"SE4041", ueca_ROLLBACK_TRN, "Can't delete file"}
328
+ ,{"SE4042", ueca_ROLLBACK_TRN, "Can't open file"}
329
+ ,{"SE4043", ueca_ROLLBACK_TRN, "Can't close file"}
330
+ ,{"SE4044", ueca_ROLLBACK_TRN, "Can't read file"}
331
+ ,{"SE4045", ueca_ROLLBACK_TRN, "Can't write file"}
332
+ ,{"SE4046", ueca_ROLLBACK_TRN, "Can't set file pointer"}
333
+ ,{"SE4047", ueca_ROLLBACK_TRN, "Can't set end of file"}
334
+ ,{"SE4048", ueca_ROLLBACK_TRN, "Can't create directory"}
335
+ ,{"SE4049", ueca_ROLLBACK_TRN, "Can't copy file"}
336
+ ,{"SE4050", ueca_ROLLBACK_TRN, "Can't get file size"}
337
+ ,{"SE4051", ueca_ROLLBACK_TRN, "Can't get disk sector size"}
338
+ ,{"SE4052", ueca_ROLLBACK_TRN, "Can't get unique file name"}
339
+ ,{"SE4053", ueca_ROLLBACK_TRN, "Can't open directory"}
340
+ ,{"SE4054", ueca_ROLLBACK_TRN, "Can't close directory"}
341
+ ,{"SE4055", ueca_ROLLBACK_TRN, "Can't create directory"}
342
+ ,{"SE4060", ueca_ROLLBACK_TRN, "Can't create thread"}
343
+ ,{"SE4061", ueca_ROLLBACK_TRN, "Can't suspend thread"}
344
+ ,{"SE4062", ueca_ROLLBACK_TRN, "Can't resume thread"}
345
+ ,{"SE4063", ueca_ROLLBACK_TRN, "Can't close thread"}
346
+ ,{"SE4064", ueca_ROLLBACK_TRN, "Can't exit thread"}
347
+ ,{"SE4065", ueca_ROLLBACK_TRN, "Can't sleep thread"}
348
+ ,{"SE4070", ueca_ROLLBACK_TRN, "Can't create process"}
349
+ ,{"SE4071", ueca_ROLLBACK_TRN, "Can't terminate process"}
350
+ ,{"SE4072", ueca_ROLLBACK_TRN, "Can't set environment variable"}
351
+ ,{"SE4073", ueca_ROLLBACK_TRN, "Can't get environment variable"}
352
+ ,{"SE4074", ueca_ROLLBACK_TRN, "Can't create memory mapping"}
353
+ ,{"SE4075", ueca_ROLLBACK_TRN, "Can't release memory mapping"}
354
+ ,{"SE4076", ueca_ROLLBACK_TRN, "Can't open memory mapping"}
355
+ ,{"SE4077", ueca_ROLLBACK_TRN, "Can't close memory mapping"}
356
+ ,{"SE4078", ueca_ROLLBACK_TRN, "Can't perform memory mapping"}
357
+ ,{"SE4079", ueca_ROLLBACK_TRN, "Can't perform memory unmapping"}
358
+ ,{"SE4080", ueca_ROLLBACK_TRN, "Can't set handles property"}
359
+ ,{"SE4081", ueca_ROLLBACK_TRN, "Can't get process' image path"}
360
+ ,{"SE4082", ueca_ROLLBACK_TRN, "Bad query encoding"}
361
+ ,{"SE4083", ueca_ROLLBACK_TRN, "Can't read directory"}
362
+ ,{"SE4150", ueca_ROLLBACK_TRN, "Logical log read buffer too small"}
363
+ ,{"SE4151", ueca_ROLLBACK_TRN, "Too small shared memory size for logical log"}
364
+ ,{"SE4152", ueca_ROLLBACK_TRN, "Bad parameters: start LSN less then end LSN"}
365
+ ,{"SE4153", ueca_ROLLBACK_TRN, "Bad checkpoint record given"}
366
+ ,{"SE4154", ueca_ROLLBACK_TRN, "Bad record from logical log given"}
367
+ ,{"SE4155", ueca_ROLLBACK_TRN, "Bad transaction identifier given"}
368
+ ,{"SE4200", ueca_ROLLBACK_TRN, "There is no database with the specified name"}
369
+ ,{"SE4201", ueca_ROLLBACK_TRN, "Not Well-Formed Config file"}
370
+ ,{"SE4202", ueca_ROLLBACK_TRN, "SM startup failure: SEDNA server is not running"}
371
+ ,{"SE4203", ueca_ROLLBACK_TRN, "Can't send message via SSMMsg"}
372
+ ,{"SE4204", ueca_ROLLBACK_TRN, "Database with the same name is already running"}
373
+ ,{"SE4205", ueca_ROLLBACK_TRN, "Failed to run SM in the background mode (use '-background-mode off' for detailed diagnostics)"}
374
+ ,{"SE4206", ueca_ROLLBACK_TRN, "Failed to initialize system parameters "}
375
+ ,{"SE4207", ueca_ROLLBACK_TRN, "Failed to set up ctrl handler "}
376
+ ,{"SE4208", ueca_ROLLBACK_TRN, "Failed to shutdown SM: SEDNA server is not running"}
377
+ ,{"SE4209", ueca_ROLLBACK_TRN, "Failed to shutdown SM"}
378
+ ,{"SE4210", ueca_ROLLBACK_TRN, "Error waiting for checkpoint thread to shutdown."}
379
+ ,{"SE4211", ueca_ROLLBACK_TRN, "Failed to create the database"}
380
+ ,{"SE4212", ueca_ROLLBACK_TRN, "Database files format is incompatible with SEDNA binaries"}
381
+ ,{"SE4300", ueca_ROLLBACK_TRN, "Path is not valid"}
382
+ ,{"SE4301", ueca_ROLLBACK_TRN, "Can not initialize system structures"}
383
+ ,{"SE4302", ueca_ROLLBACK_TRN, "Can not create persistent heap"}
384
+ ,{"SE4303", ueca_ROLLBACK_TRN, "Can not allocate memory from persistent heap"}
385
+ ,{"SE4304", ueca_ROLLBACK_TRN, "Can not close persistent heap"}
386
+ ,{"SE4305", ueca_ROLLBACK_TRN, "Can not release system structures"}
387
+ ,{"SE4306", ueca_ROLLBACK_TRN, "Can not back up PH"}
388
+ ,{"SE4307", ueca_ROLLBACK_TRN, "Invalid database name."}
389
+ ,{"SE4308", ueca_ROLLBACK_TRN, "Failed to drop a database"}
390
+ ,{"SE4400", ueca_ROLLBACK_TRN, "SEDNA server is not running "}
391
+ ,{"SE4401", ueca_ROLLBACK_TRN, "Failed to run GOVERNOR in the background mode (use '-background-mode off' for detailed diagnostics)"}
392
+ ,{"SE4402", ueca_ROLLBACK_TRN, "Failed to run GOVERNOR"}
393
+ ,{"SE4403", ueca_ROLLBACK_TRN, "Failed to set up ctrl handler for GOVERNOR"}
394
+ ,{"SE4404", ueca_ROLLBACK_TRN, "Error occured during closing LISTENER"}
395
+ ,{"SE4405", ueca_ROLLBACK_TRN, "Session can't be closed"}
396
+ ,{"SE4406", ueca_ROLLBACK_TRN, "There is no any sign of the SEDNA server running in the system"}
397
+ ,{"SE4408", ueca_ROLLBACK_TRN, "Failed to run GOVERNOR: SEDNA server is running"}
398
+ ,{"SE4409", ueca_ROLLBACK_TRN, "Failed to open session: database is not started"}
399
+ ,{"SE4410", ueca_ROLLBACK_TRN, "Can't rename last soft fault directory"}
400
+ ,{"SE4411", ueca_ROLLBACK_TRN, "Can't set sedna data variable"}
401
+ ,{"SE4412", ueca_ROLLBACK_TRN, "The number of database config files exceeds the maximum freshold"}
402
+ ,{"SE4413", ueca_ROLLBACK_TRN, "Can't create session process"}
403
+ ,{"SE4500", ueca_ROLLBACK_TRN, "bad logical record given from logical log"}
404
+ ,{"SE4501", ueca_ROLLBACK_TRN, "Can't recover database by logical log"}
405
+ ,{"SE4510", ueca_ROLLBACK_TRN, "Hot-backup utility error"}
406
+ ,{"SE4600", ueca_ROLLBACK_TRN, "One of the command line argumets is too long"}
407
+ ,{"SE4601", ueca_ROLLBACK_TRN, "Command line arguments are not correct"}
408
+ ,{"SE4602", ueca_ROLLBACK_TRN, "Can't get current working directory absolute path"}
409
+ ,{"SE4603", ueca_ROLLBACK_TRN, "Can't get absolute path to the file"}
410
+ ,{"SE4604", ueca_ROLLBACK_TRN, "Can't change working directory"}
411
+ ,{"SE4605", ueca_ROLLBACK_TRN, "Initialization of persistent heap failed"}
412
+ ,{"SE4606", ueca_ROLLBACK_TRN, "Release of persistent heap failed"}
413
+ ,{"SE4607", ueca_ROLLBACK_TRN, "Can't run transaction: system is busy"}
414
+ ,{"SE4608", ueca_ROLLBACK_TRN, "Transaction is rolled back because server is stopping"}
415
+ ,{"SE4609", ueca_ROLLBACK_TRN, "The database does not exist"}
416
+ ,{"SE4610", ueca_ROLLBACK_TRN, "There is no transaction to commit."}
417
+ ,{"SE4611", ueca_ROLLBACK_TRN, "There is no transaction to roll back."}
418
+ ,{"SE4612", ueca_ROLLBACK_TRN, "Commit current transaction before beginning a new one."}
419
+ ,{"SE4613", ueca_ROLLBACK_TRN, "Since version 0.6 se_trn is an internal process and cannot be run manually. Use se_term instead."}
420
+ ,{"SE4614", ueca_ROLLBACK_TRN, "There is no next item of the user's query."}
421
+ ,{"SE4615", ueca_ROLLBACK_TRN, "Begin transaction before executing a query."}
422
+ ,{"SE4616", ueca_ROLLBACK_TRN, "Can't load a document because the session is loading another document. Finish current loading before beginning a new one."}
423
+ ,{"SE4617", ueca_ROLLBACK_TRN, "Failed to set session option."}
424
+ ,{"SE4618", ueca_ROLLBACK_TRN, "Failed to reset session options."}
425
+ ,{"SE4700", ueca_ROLLBACK_TRN, "Unknown resource identifier type "}
426
+ ,{"SE4701", ueca_ROLLBACK_TRN, "Internal Lock Manager error"}
427
+ ,{"SE4702", ueca_ROLLBACK_TRN, "The resorce's name length is too long"}
428
+ ,{"SE4703", ueca_ROLLBACK_TRN, "The transaction is a victim of deadlock resolution procedure"}
429
+ ,{"SE4704", ueca_ROLLBACK_TRN, "Unknown reply from Lock Manager"}
430
+ ,{"SE4705", ueca_ROLLBACK_TRN, "Deadlock is detected"}
431
+ ,{"SE4706", ueca_ROLLBACK_TRN, "Cannot provide X-locks in RO-mode"}
432
+ ,{"SE5000", ueca_ROLLBACK_TRN, "Unexpected number of arguments."}
433
+ ,{"SE5001", ueca_ROLLBACK_TRN, "Prolog not found for query."}
434
+ ,{"SE5002", ueca_ROLLBACK_TRN, "Body not found for query."}
435
+ ,{"SE5003", ueca_ROLLBACK_TRN, "Empty or unexpected query."}
436
+ ,{"SE5004", ueca_ROLLBACK_TRN, "Unexpected query."}
437
+ ,{"SE5005", ueca_ROLLBACK_TRN, "Unexpected expression."}
438
+ ,{"SE5006", ueca_ROLLBACK_TRN, "Operation not yet supported."}
439
+ ,{"SE5008", ueca_ROLLBACK_TRN, "Unexpected namespace prefix."}
440
+ ,{"SE5012", ueca_ROLLBACK_TRN, "Declaration not supported."}
441
+ ,{"SE5014", ueca_ROLLBACK_TRN, "Not a constant."}
442
+ ,{"SE5015", ueca_ROLLBACK_TRN, "Not a proper QName."}
443
+ ,{"SE5016", ueca_ROLLBACK_TRN, "Unknown item type."}
444
+ ,{"SE5017", ueca_ROLLBACK_TRN, "Not a name specifier."}
445
+ ,{"SE5018", ueca_ROLLBACK_TRN, "Not a type declaration."}
446
+ ,{"SE5019", ueca_ROLLBACK_TRN, "Improper list of formal parameters."}
447
+ ,{"SE5020", ueca_ROLLBACK_TRN, "Not a valid variable name."}
448
+ ,{"SE5021", ueca_ROLLBACK_TRN, "Not a return type declaration."}
449
+ ,{"SE5022", ueca_ROLLBACK_TRN, "Not a function body."}
450
+ ,{"SE5023", ueca_ROLLBACK_TRN, "Malformed variable name."}
451
+ ,{"SE5026", ueca_ROLLBACK_TRN, "Type definition for constant not found."}
452
+ ,{"SE5027", ueca_ROLLBACK_TRN, "Constant value is not compatible with the type definition."}
453
+ ,{"SE5028", ueca_ROLLBACK_TRN, "Constant is not a proper QName."}
454
+ ,{"SE5030", ueca_ROLLBACK_TRN, "Not a type specifier."}
455
+ ,{"SE5032", ueca_ROLLBACK_TRN, "Not an anonimous function definition."}
456
+ ,{"SE5033", ueca_ROLLBACK_TRN, "Too many arguments in a function."}
457
+ ,{"SE5034", ueca_ROLLBACK_TRN, "DDO contains atomic values in its argument."}
458
+ ,{"SE5035", ueca_ROLLBACK_TRN, "Not an ivar declaration."}
459
+ ,{"SE5036", ueca_ROLLBACK_TRN, "No function name provided in the function call."}
460
+ ,{"SE5040", ueca_ROLLBACK_TRN, "Empty or unexpected update operation."}
461
+ ,{"SE5041", ueca_ROLLBACK_TRN, "Unknown update operation."}
462
+ ,{"SE5042", ueca_ROLLBACK_TRN, "Insert is applied to a non-node type."}
463
+ ,{"SE5043", ueca_ROLLBACK_TRN, "Rename is applied to a non-node type."}
464
+ ,{"SE5044", ueca_ROLLBACK_TRN, "Delete is applied to a non-node type."}
465
+ ,{"SE5045", ueca_ROLLBACK_TRN, "Empty or unexpected manage operation."}
466
+ ,{"SE5046", ueca_ROLLBACK_TRN, "Unknown manage operation."}
467
+ ,{"SE5047", ueca_ROLLBACK_TRN, "Empty or unexpected metadata operation."}
468
+ ,{"SE5048", ueca_ROLLBACK_TRN, "Unknown metadata operation."}
469
+ ,{"SE5049", ueca_ROLLBACK_TRN, "Not a structural XPath supplied."}
470
+ ,{"SE5050", ueca_ROLLBACK_TRN, "Unknown mode supplied for index-scan function call."}
471
+ ,{"SE5051", ueca_ROLLBACK_TRN, "Unknown range specified for index-scan-between function call."}
472
+ ,{"SE5054", ueca_ROLLBACK_TRN, "Unexpected value of the boundary-space declaration."}
473
+ ,{"SE5055", ueca_ROLLBACK_TRN, "Unknown option in XQuery prolog."}
474
+ ,{"SE5056", ueca_ROLLBACK_TRN, "Malformed cases supplied in a typeswitch operation."}
475
+ ,{"SE5057", ueca_ROLLBACK_TRN, "No default case supplied for a typeswitch operation."}
476
+ ,{"SE5058", ueca_ROLLBACK_TRN, "Unexpected case for a typeswitch operation."}
477
+ ,{"SE5059", ueca_ROLLBACK_TRN, "Malformed default case for a typeswitch operation."}
478
+ ,{"SE5060", ueca_ROLLBACK_TRN, "Unexpected default empty order declaration in XQuery prolog."}
479
+ ,{"SE5061", ueca_ROLLBACK_TRN, "Malformed ascending/descending order declaration in order by clause."}
480
+ ,{"SE5062", ueca_ROLLBACK_TRN, "Malformed empty greatest / empty least declaration in order by clause."}
481
+ ,{"SE5063", ueca_ROLLBACK_TRN, "Malformed stable order by."}
482
+ ,{"SE5064", ueca_ROLLBACK_TRN, "Order modifier expected."}
483
+ ,{"SE5065", ueca_ROLLBACK_TRN, "Order specification expected."}
484
+ ,{"SE5066", ueca_ROLLBACK_TRN, "Orderspecs expected."}
485
+ ,{"SE5067", ueca_ROLLBACK_TRN, "Malformed name-value pair in Sedna-specific option declaration."}
486
+ ,{"SE5068", ueca_ROLLBACK_TRN, "Unknown key(s) given in se:output option."}
487
+ ,{"SE5069", ueca_ROLLBACK_TRN, "Empty option value for Sedna-specific option."}
488
+ ,{"SE5070", ueca_ROLLBACK_TRN, "Duplicate key entry in se:output option."}
489
+ ,{"SE5071", ueca_ROLLBACK_TRN, "Unknown value bound with a \"method\" key in se:output option."}
490
+ ,{"SE5072", ueca_ROLLBACK_TRN, "Unknown value bound with an \"indent\" key in se:output option."}
491
+ ,{"SE5073", ueca_ROLLBACK_TRN, "Unknown time specifier in CREATE TRIGGER statement. Expected: BEFORE or AFTER."}
492
+ ,{"SE5074", ueca_ROLLBACK_TRN, "Unknown event specifier in CREATE TRIGGER statement."}
493
+ ,{"SE5075", ueca_ROLLBACK_TRN, "Malformed list of statements in the DO-clause of CREATE TRIGGER statement."}
494
+ ,{"SE5076", ueca_ROLLBACK_TRN, "Unknown granularity specified in CREATE TRIGGER statement."}
495
+ ,{"SE5077", ueca_ROLLBACK_TRN, "Variable declaration expected."}
496
+ ,{"SE5078", ueca_ROLLBACK_TRN, "LibraryModule expected, given unexpected."}
497
+ ,{"SE5079", ueca_ROLLBACK_TRN, "Unexpected ModuleDecl supplied."}
498
+ ,{"SE5080", ueca_ROLLBACK_TRN, "Unknown full-text index type supplied for a CREATE FULL-TEXT INDEX statement."}
499
+ ,{"SE5081", ueca_ROLLBACK_TRN, "Ill-formed \"customized-value\" full-text index type provided."}
500
+ ,{"SE5100", ueca_ROLLBACK_TRN, "Error in Scheme part."}
501
+ ,{"SE5101", ueca_ROLLBACK_TRN, "Scheme part panic."}
502
+ ,{"SE5500", ueca_ROLLBACK_TRN, "An attempt to create a statement on a closed connection."}
503
+ ,{"SE5501", ueca_ROLLBACK_TRN, "Result item cannot be returned as a String because it is too large."}
504
+ ,{"SE5502", ueca_ROLLBACK_TRN, "Unsupported encoding."}
505
+ ,{"SE6000", ueca_ROLLBACK_TRN, "User statement is too large (maximum size allowed is 2 Mb)."}
506
+ ,{"SE9000", ueca_ROLLBACK_TRN, "User defined error"}
507
+ ,{"SE2039", ueca_ROLLBACK_TRN, "Invalid result of the second insert argument: sequence contains non-persistent or document nodes"}
508
+ ,{"SE3207", ueca_ROLLBACK_TRN, "XPath expression after the 'ON' keyword is invalid."}
509
+ ,{"SE3208", ueca_ROLLBACK_TRN, "The trigger variable is used but undefined in this context."}
510
+ ,{"SE3209", ueca_ROLLBACK_TRN, "It is prohibited to use trigger variables in statement-level triggers."}
511
+ ,{"SE4619", ueca_ROLLBACK_TRN, "Unknown session option."}
512
+ ,{"SE3210", ueca_ROLLBACK_TRN, "Trigger action in a node-level trigger must end with an XQuery query."}
513
+ ,{"SE3211", ueca_ROLLBACK_TRN, "No trigger with this name."}
514
+ ,{"SE2040", ueca_ROLLBACK_TRN, "Too many childs by schema."}
515
+ ,{"SE4620", ueca_ROLLBACK_TRN, "Transaction has been rolled back due to timeout or hard stop request."}
516
+ ,{"SE4801", ueca_ROLLBACK_TRN, "Cannot initialize wu."}
517
+ ,{"SE4802", ueca_ROLLBACK_TRN, "Cannot release wu."}
518
+ ,{"SE2041", ueca_ROLLBACK_TRN, "Result is cut, because its size exceeds max allowed size (set by client)."}
519
+ ,{"SE4901", ueca_ROLLBACK_TRN, "Internal LFS error."}
520
+ ,{"SE4902", ueca_ROLLBACK_TRN, "Internal LL error."}
521
+ ,{"SE4903", ueca_ROLLBACK_TRN, "Hot-backup error."}
522
+ ,{"SE4621", ueca_ROLLBACK_TRN, "Property is unknown."}
523
+ ,{"SE4622", ueca_ROLLBACK_TRN, "This statement is not supported because Sedna' database security level is \"authentication\". (To support this statement create database with -db-security option \"authorization\".)"}
524
+ ,{"SE5200", ueca_ROLLBACK_TRN, "Internal Runtime Configuration utility error"}
525
+ ,{"SE4623", ueca_ROLLBACK_TRN, "Cannot set keep alive session timeout"}
526
+ ,{"SE4624", ueca_ROLLBACK_TRN, "Session was closed since keep alive timeout has been expired"}
527
+ ,{"SE3081", ueca_ROLLBACK_TRN, "Can't open file with long query to execute"}
528
+ ,{"XQDY0096", ueca_ROLLBACK_TRN, "It is a dynamic error the node-name of a node constructed by a computed element constructor has any of the following properties: its namespace prefix is xmlns, its namespace URI is http://www.w3.org/2000/xmlns/, its namespace prefix is xml and its namespace URI is not http://www.w3.org/XML/1998/namespace, its namespace prefix is other than xml and its namespace URI is http://www.w3.org/XML/1998/namespace."}
529
+ };
530
+
531
+ const int user_error_code_entries_size = sizeof user_error_code_entries;