The JSON object aggregate function. This is the same as calling #jsonEntry(String, Field) with Field#getName() as a key.
(Field<?> value)
| 32315 | * {@link Field#getName()} as a key. |
| 32316 | */ |
| 32317 | @NotNull |
| 32318 | @Support({ DUCKDB, H2, MARIADB, MYSQL, POSTGRES, SQLITE, TRINO, YUGABYTEDB }) |
| 32319 | public static JSONObjectAggNullStep<JSON> jsonObjectAgg(Field<?> value) { |
| 32320 | return jsonObjectAgg(jsonEntry(value)); |
| 32321 | } |
| 32322 | |
| 32323 | /** |
| 32324 | * The JSON object aggregate function. |
no test coverage detected