aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/insert_all.rb
Commit message (Expand)AuthorAgeFilesLines
* handle passing in primary key to unique_by, and handle primary keys missing i...Lachlan Sylvester2019-08-051-2/+4
* Avoid new string instance creation in `InsertAll#execute`Ryuta Kamizono2019-04-221-3/+3
* There is no need to create `QueryAttribute` to just type cast a valueRyuta Kamizono2019-04-101-2/+1
* Merge pull request #35892 from ryohashimoto/bulk_insert_logsEileen M. Uchitelle2019-04-081-1/+4
|\
| * Improve log messages for #insert_all` / `#upsert_all` / `#insert` / `#upsert ...Ryo Hashimoto2019-04-081-1/+4
* | When skipping duplicates in bulk insert on MySQL, avoid assigning id when not...Bob Lail2019-04-081-2/+2
|/
* Use accessors internally; remove needless validationKasper Timm Hansen2019-03-311-6/+2
* Mark InsertAll as private API. Easier to add later.Kasper Timm Hansen2019-03-311-1/+1
* Capture some join calls.Kasper Timm Hansen2019-03-311-4/+8
* Bulk Insert: Reuse indexes for unique_byKasper Timm Hansen2019-03-201-20/+31
* Simplify values_list with more compositionKasper Timm Hansen2019-03-181-24/+30
* Extract column check in values_listKasper Timm Hansen2019-03-181-14/+14
* Raise UnknownAttributeError when unknown column is passed to insert_all and f...Josef Šimánek2019-03-161-0/+8
* Add some whitespace for readability.Kasper Timm Hansen2019-03-061-0/+2
* Handle blank inserts like update_all; raise upfront.Kasper Timm Hansen2019-03-061-6/+4
* Add insert_all to ActiveRecord models (#35077)Bob Lail2019-03-051-0/+153