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