Skip to content

Commit f4f9c28

Browse files
committed
A largely-working XMLQUERY using s9api.
Known limitations: Maps all INTERVALs to xs:duration, rather than to yearMonthDuration or dayTimeDuration as called for in the spec (PL/Java ResultSetMetaData not exposing adequate information from the typmod). Maps all NUMERIC / DECIMAL to xs:decimal, not to xs:integer when scale is zero as called for in the spec (PL/Java ResultSetMetaData returning hardcoded value for scale). Surely needs more work around time zones for types that may or may not have them.
1 parent 2d850c6 commit f4f9c28

File tree

2 files changed

+800
-0
lines changed
  • pljava-examples

2 files changed

+800
-0
lines changed

pljava-examples/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
<artifactId>pljava-api</artifactId>
1616
<version>${project.version}</version>
1717
</dependency>
18+
<dependency>
19+
<groupId>net.sf.saxon</groupId>
20+
<artifactId>Saxon-HE</artifactId>
21+
<version>9.8.0-12</version>
22+
</dependency>
1823
</dependencies>
1924
<build>
2025
<plugins>

0 commit comments

Comments
 (0)