问题 Does H2DBC support PostgreSQL enums? I checked they git page but it doesn't mention anything about it. If it does, how enums could be used (INSERT, SELECT)? Lets say PostgreSQL enum CREATE TYPE mood AS ENUM ('UNKNOWN', 'HAPPY', 'SAD', ...); Java class @Data public class Person { private String name; private Mood mood; // ... enum Mood{ UNKNOWN, HAPPY, SAD, ...} } I tried: // insert var person = ...; client.insert() .table("people") .using(person) .then() .subscribe(System.out::println); //