You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exist-core/src/main/java/org/exist/xquery/ErrorCodes.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,7 @@ public class ErrorCodes {
90
90
publicstaticfinalErrorCodeXQST0052 = newW3CErrorCode("XQST0052", "It is a static error if the type-name in a single-type or sequence-type for a cast or castable expression does not refer to a defined atomic type.");
91
91
publicstaticfinalErrorCodeXQST0053 = newW3CErrorCode("XQST0053", "(Not currently used.)");
92
92
publicstaticfinalErrorCodeXQST0054 = newW3CErrorCode("XQST0054", "It is a static error if a variable depends on itself.");
93
+
publicstaticfinalErrorCodeXQDY0054 = newW3CErrorCode("XQDY0054", "It is a dynamic error if a variable depends on itself.");
93
94
publicstaticfinalErrorCodeXQST0055 = newW3CErrorCode("XQST0055", "It is a static error if a Prolog contains more than one copy-namespaces declaration.");
94
95
publicstaticfinalErrorCodeXQST0056 = newW3CErrorCode("XQST0056", "(Not currently used.)");
95
96
publicstaticfinalErrorCodeXQST0057 = newW3CErrorCode("XQST0057", "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.");
Copy file name to clipboardExpand all lines: exist-core/src/main/java/org/exist/xquery/functions/fn/FunContainsToken.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ public class FunContainsToken extends BasicFunction {
44
44
45
45
privatefinalstaticFunctionParameterSequenceTypeFS_INPUT = optManyParam("input", Type.STRING, "The input string");
46
46
privatefinalstaticFunctionParameterSequenceTypeFS_TOKEN = param("token", Type.STRING, "The token to be searched for");
47
-
privatefinalstaticFunctionParameterSequenceTypeFS_COLLATION = param("pattern", Type.STRING, "Collation to use");
47
+
privatefinalstaticFunctionParameterSequenceTypeFS_COLLATION = optParam("collation", Type.STRING, "Collation to use; an empty sequence selects the default collation");
0 commit comments