We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Audits the SPI & types packages (#1703) * Moves SPI classes under org.partiql.spi * Updates Javadocs * Removes partiql-types and moves org.partiql.types sources into org.partiql.spi * Removes the partiql-types version of Enum in favor of SPI's enum * Removes all UNKNOWN variants within partiql-spi of org.partiql.spi.Enum * Adds an UnsupportedCodeException to org.partiql.spi.Enum#name()
Removes PartiQLValue and adds support for VARIANT (#1678) Removes PartiQLValue from public API Removes PartiQLValueType from public API Removes PartiQLValueExperimental from public API Removes PartiQLValue reader/writer from public API Adds full support for the VARIANT type Adds PType static factory methods with default parameters Adds AST-to-Plan typing logic of integers to the Ion Variant Adds a lowerSafe() internal utility method for reducing code size
Merge pull request #1168 from partiql/pluggable-functions-rebased Add FunctionManager and Pluggable Functions Implementations