You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this code generates a 'RETURNING *' appended to the final query and this is not always the desired behavior.
for instance, i'd like to have a query like
insert into ... values ... returning id, column1, column2, ...
which can return not only the primary keys, but more columns.
Right now, i can 'force' this by setting 'returnGeneratedKeys' to false on BaseQuery, but need to cast the builder
this code generates a 'RETURNING *' appended to the final query and this is not always the desired behavior.
for instance, i'd like to have a query like
which can return not only the primary keys, but more columns.
Right now, i can 'force' this by setting 'returnGeneratedKeys' to false on BaseQuery, but need to cast the builder
Maybe it should be a setter on the InsertBuilder ?