@borkdude has joined the channel
Does hugsql support DEFAULT as in:
INSERT INTO films VALUES
(‘UA502’, ‘Bananas’, 105, DEFAULT, ‘Comedy’, ‘82 minutes’);
while also being able to provide a non-default value that is
so to provide something like :default as an argument
if you're doing relatively straight forward inserts, you may look into using jdbc's insert! directly. That way, if your map does not include the key, it'll do whatever your database does by default. See https://clojure.github.io/java.jdbc/#clojure.java.jdbc/insert!