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
It would be a great improvement as it is very useful to be able to get the list of records that just got inserted and there is no easy way to do it manually: the only way is to manually loop on the bulk imported data and .find_by each record
The text was updated successfully, but these errors were encountered:
According to this: https://stackoverflow.com/questions/7333524/how-can-i-insert-many-rows-into-a-mysql-table-and-return-the-new-ids
It is possible to compute the inserted IDs on mysql and returning in the
ids
field of the result like it is done for Postgres.It would be a great improvement as it is very useful to be able to get the list of records that just got inserted and there is no easy way to do it manually: the only way is to manually loop on the bulk imported data and
.find_by
each recordThe text was updated successfully, but these errors were encountered: