class |
AbstractArrayContainsFunction |
Encapsulates the validator, return type and argument type resolvers for the array_contains function.
|
class |
AbstractArrayFillFunction |
Encapsulates the validator, return type and argument type resolvers for the array_contains function.
|
class |
AbstractArrayIncludesFunction |
Encapsulates the validator, return type and argument type resolvers for the array_includes function.
|
class |
AbstractArrayIntersectsFunction |
Encapsulates the validator, return type and argument type resolvers for the array_intersects function.
|
class |
AbstractArrayPositionFunction |
Encapsulates the validator, return type and argument type resolvers for the array_position functions.
|
class |
AbstractArrayPositionsFunction |
Encapsulates the validator, return type and argument type resolvers for the array_positions functions.
|
class |
AbstractArrayRemoveFunction |
Encapsulates the validator, return type and argument type resolvers for the array_remove functions.
|
class |
AbstractArrayTrimFunction |
Encapsulates the validator, return type and argument type resolvers for the array_remove functions.
|
class |
ArrayAggFunction |
|
class |
ArrayConcatElementFunction |
Concatenation function for array and an element.
|
class |
ArrayConcatFunction |
Concatenation function for arrays.
|
class |
ArrayConstructorFunction |
|
class |
ArrayContainsOperatorFunction |
Special array contains function that also applies a cast to the element argument.
|
class |
ArrayContainsUnnestFunction |
Implement the array contains function by using unnest .
|
class |
ArrayGetUnnestFunction |
Implement the array get function by using unnest .
|
class |
ArrayIncludesOperatorFunction |
Special array includes implementation that uses the PostgreSQL @> operator.
|
class |
ArrayIncludesUnnestFunction |
Implement the array includes function by using unnest .
|
class |
ArrayIntersectsOperatorFunction |
Array intersects function that uses the PostgreSQL && operator.
|
class |
ArrayIntersectsUnnestFunction |
Implement the intersects function by using unnest .
|
class |
ArrayRemoveIndexUnnestFunction |
Implement the array remove index function by using unnest .
|
class |
ArrayReplaceUnnestFunction |
Implement the array replace function by using unnest .
|
class |
ArraySetUnnestFunction |
Implement the array set function by using unnest .
|
class |
ArraySliceUnnestFunction |
Implement the array slice function by using unnest .
|
class |
ArrayToStringFunction |
|
class |
CockroachArrayFillFunction |
Implement the array fill function by using generate_series .
|
class |
H2ArrayContainsFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayFillFunction |
Implement the array fill function by using system_range .
|
class |
H2ArrayIncludesFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayIntersectsFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayPositionFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayPositionsFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayRemoveFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayRemoveIndexFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayReplaceFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArraySetFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
H2ArrayToStringFunction |
H2 requires a very special emulation, because unnest is pretty much useless,
due to https://github.com/h2database/h2database/issues/1815.
|
class |
HSQLArrayConstructorFunction |
|
class |
HSQLArrayFillFunction |
Implement the array fill function by using sequence_array .
|
class |
HSQLArrayPositionFunction |
HSQLDB has a special syntax.
|
class |
HSQLArrayPositionsFunction |
HSQLDB has a special syntax.
|
class |
HSQLArrayRemoveFunction |
HSQLDB array_remove function.
|
class |
HSQLArraySetFunction |
HSQLDB array_set function.
|
class |
HSQLArrayToStringFunction |
HSQLDB has a special syntax.
|
class |
OracleArrayAggEmulation |
|
class |
OracleArrayConcatElementFunction |
Oracle concatenation function for array and an element.
|
class |
OracleArrayConcatFunction |
Oracle concatenation function for arrays.
|
class |
OracleArrayConstructorFunction |
|
class |
OracleArrayContainsFunction |
|
class |
OracleArrayFillFunction |
Oracle array_fill function.
|
class |
OracleArrayGetFunction |
Oracle array_get function.
|
class |
OracleArrayIncludesFunction |
|
class |
OracleArrayIntersectsFunction |
|
class |
OracleArrayLengthFunction |
|
class |
OracleArrayPositionFunction |
|
class |
OracleArrayPositionsFunction |
|
class |
OracleArrayRemoveFunction |
Oracle array_remove function.
|
class |
OracleArrayRemoveIndexFunction |
Oracle array_remove_index function.
|
class |
OracleArrayReplaceFunction |
Oracle array_replace function.
|
class |
OracleArraySetFunction |
Oracle array_set function.
|
class |
OracleArraySliceFunction |
Oracle array_slice function.
|
class |
OracleArrayToStringFunction |
Oracle array_to_string function.
|
class |
OracleArrayTrimFunction |
Oracle array_trim function.
|
class |
PostgreSQLArrayConcatElementFunction |
PostgreSQL variant of the function to properly return null when the array argument is null.
|
class |
PostgreSQLArrayConcatFunction |
PostgreSQL variant of the function to properly return null when one of the arguments is null.
|
class |
PostgreSQLArrayConstructorFunction |
Special array constructor function that also applies a cast to the array literal,
based on the inferred result type.
|
class |
PostgreSQLArrayFillFunction |
Custom casting for the array fill function.
|
class |
PostgreSQLArrayPositionFunction |
PostgreSQL variant of the function.
|
class |
PostgreSQLArrayPositionsFunction |
PostgreSQL variant of the function.
|
class |
PostgreSQLArrayTrimEmulation |
PostgreSQL array_trim emulation, since the function was only introduced in version 14.
|