hi all. I am using tuple syntax for inserts, i.e.
insert into foo(bar, baz) values :t:values
in my case, baz is a db enum. In other instances where I use enums, I can append the type to the param like so:
insert into foo (bar, baz) values (:bar-val, :baz-val::type)
But I don't see an obvious way to do that with the tuple syntax - anyone have any thoughts?