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
{{ message }}
This repository was archived by the owner on Dec 8, 2023. It is now read-only.
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