[jOOQ/jOOQ#11485] Support ABSENT ON NULL

This commit is contained in:
Lukas Eder 2023-03-13 10:05:02 +01:00
parent 50e06ebd94
commit 75bf7e6b0e

View File

@ -84,7 +84,7 @@ public interface JSONObjectNullStep<T> extends JSONObjectReturningStep<T> {
* <p>
* Exclude <code>NULL</code> values in output JSON.
*/
@Support({ H2, MYSQL, POSTGRES, YUGABYTEDB })
@Support({ H2, MYSQL, POSTGRES, TRINO, YUGABYTEDB })
@NotNull @CheckReturnValue
JSONObjectReturningStep<T> absentOnNull();
}