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: extensions/modules/compression/src/main/java/org/exist/xquery/modules/compression/AbstractExtractFunction.java
+28-10Lines changed: 28 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
thrownewXPathException(this, "entry-filter function must have a signature that matches: entry-filter($path as xs:string, $data-type as xs:string) as xs:boolean");
109
109
}
110
110
@@ -116,12 +116,12 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
thrownewXPathException(this, "entry-path function must have a signature that matches: entry-path($path as xs:string, $data-type as xs:string) as xs:anyURI");
thrownewXPathException(this, "entry-data function must have a signature that matches: entry-data($path as xs:string, $data-type as xs:string, $data as item()?) as item()*");
126
126
}
127
127
dataParams = newSequence[3];
@@ -136,7 +136,7 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
thrownewXPathException(this, "entry-filter function must have a signature that matches: entry-filter($path as xs:string, $data-type as xs:string, $param as item()*) as xs:boolean");
141
141
}
142
142
@@ -149,13 +149,13 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
thrownewXPathException(this, "entry-path function must have a signature that matches: entry-path($path as xs:string, $data-type as xs:string, $param as item()*) as xs:anyURI");
thrownewXPathException(this, "entry-data function must have a signature that matches: entry-data($path as xs:string, $data-type as xs:string, $data as item()?, $param as item()*) as item()*");
160
160
}
161
161
dataParams = newSequence[4];
@@ -187,19 +187,37 @@ public Sequence eval(final Sequence[] args, final Sequence contextSequence) thro
0 commit comments