@iagwanderson You can use named parameter in insert-into and after that pass param-map to sql/format.
something like
(->
(insert-into :table)
(values [{:map_field :?my-map}])
(sql/format {:my-map {:a :b}}))
Thanks @maxp — I tend to forget about named parameters because I never use them.
Just committed extended support for create
/`drop` for tables, views, materialized views. Also refresh
support for the latter. Docs to come but hopefully the tests explain enough of it for now.
^ @dharrigan 🙂