Closed diasbruno closed 1 year ago
Using returning (with multiple columns) on a insert statement generates incorrect query.
returning
insert
(returning :id :name)
produces
ID(`name`)
expected
`id`, `name`
Sorry for the delay. I fixed it by #72. Just a note for a workaround, (sxql:returning (sxql:fields :id :name)) works expectedly.
(sxql:returning (sxql:fields :id :name))
Thanks, @fukamachi. #72 looks really good.
Using
returning
(with multiple columns) on ainsert
statement generates incorrect query.produces
expected