aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
...
* | | | | | | Avoid `Topic.dup` to prevent weird test failureRyuta Kamizono2019-03-011-1/+1
* | | | | | | Reset dirty `topics` table for `SerializedAttributeTest`Ryuta Kamizono2019-03-011-1/+1
* | | | | | | [ci skip] The `find` method coerces the given arguments to integer if the `pr...Mehmet Emin INAC2019-02-281-1/+1
| |_|_|_|_|/ |/| | | | |
* | | | | | [ci skip] Fix the documentation of ActiveRecord::FinderMethods#findMehmet Emin INAC2019-02-281-2/+2
* | | | | | Use dedicated `Topic` model for `SerializedAttributeTest`Ryuta Kamizono2019-02-282-24/+14
* | | | | | Refactor `generated_relation_methods` to remove duplicated code on `ClassSpec...Ryuta Kamizono2019-02-281-31/+20
* | | | | | Allow returning nil for `default_scope`Ryuta Kamizono2019-02-282-5/+5
* | | | | | Fix indentation [ci skip]Ryuta Kamizono2019-02-271-2/+2
* | | | | | Fix random CI failure due to non-deterministic sorting orderRyuta Kamizono2019-02-271-5/+5
* | | | | | Fix test that was broken by adding a default scope to an existing modelRafael Mendonça França2019-02-263-2/+10
* | | | | | Fix preload with nested associationsRafael Mendonça França2019-02-263-1/+16
* | | | | | :scissors:Ryuta Kamizono2019-02-271-1/+1
* | | | | | Add negative scopes for all enum values (#35381)David Heinemeier Hansson2019-02-263-0/+25
* | | | | | Don't cache `find_by` statements on STI subclassesRyuta Kamizono2019-02-273-5/+22
* | | | | | Test that no datetime precision isn't truncated on assignmentRyuta Kamizono2019-02-272-1/+41
* | | | | | Fix random CI failure due to non-deterministic sorting orderRyuta Kamizono2019-02-271-5/+5
* | | | | | Merge pull request #35361 from jvillarejo/fix_wrong_size_query_with_distinct_...Ryuta Kamizono2019-02-274-3/+40
|\ \ \ \ \ \
| * | | | | | fixes different `count` calculation when using `size` manual `select` with DI...jvillarejo2019-02-264-3/+39
|/ / / / / /
* | | | | | Preparing for 6.0.0.beta2 releaseRafael Mendonça França2019-02-252-1/+3
* | | | | | Merge pull request #35402 from alimi/update-ar-read-regexAaron Patterson2019-02-254-1/+29
|\ \ \ \ \ \
| * | | | | | Update READ_QUERY regexAli Ibrahim2019-02-254-1/+29
* | | | | | | Refactor `type_to_sql` to handle converting `limit` to `size` in itselfRyuta Kamizono2019-02-266-76/+91
* | | | | | | Fix prepared statements caching to be enabled even when query caching is enabledRyuta Kamizono2019-02-265-15/+79
|/ / / / / /
* | | | | | Merge pull request #35352 from kamipo/update_all_doesnt_care_optimistic_lockingRyuta Kamizono2019-02-254-19/+83
|\ \ \ \ \ \
| * | | | | | Ensure `update_all` series cares about optimistic lockingRyuta Kamizono2019-02-254-19/+83
* | | | | | | Remove duplicated protected params definitionsRyuta Kamizono2019-02-246-88/+30
* | | | | | | Add test case for `unscope` with `merge`Ryuta Kamizono2019-02-241-0/+13
* | | | | | | More exercise string attribute predicate tests for falsy stringsRyuta Kamizono2019-02-241-0/+4
* | | | | | | Add test case for `unscope` with unknown columnRyuta Kamizono2019-02-241-0/+11
* | | | | | | More exercise tests for distinct count with group byRyuta Kamizono2019-02-241-2/+16
* | | | | | | minor grammar fix [ci skip]Shivam Jain2019-02-241-1/+1
* | | | | | | Make `test_select_with_subquery_in_from_uses_original_table_name` work with o...yuuji.yaginuma2019-02-231-7/+2
* | | | | | | Skip `test_select_with_subquery_in_from_uses_original_table_name` on CIRyuta Kamizono2019-02-231-1/+1
* | | | | | | Skip `test_select_with_subquery_in_from_uses_original_table_name` on Buildkit...Ryuta Kamizono2019-02-221-2/+5
* | | | | | | Just skip `test_select_with_subquery_in_from_uses_original_table_name` on TravisRyuta Kamizono2019-02-221-0/+3
* | | | | | | Fix `pluck` and `select` with `from` if `from` has original table nameRyuta Kamizono2019-02-222-1/+39
* | | | | | | Should not pass extra args to `_update_record`Ryuta Kamizono2019-02-213-7/+13
|/ / / / / /
* | | | | | Merge pull request #35336 from kamipo/dont_allow_non_numeric_string_matches_t...Ryuta Kamizono2019-02-212-1/+6
|\ \ \ \ \ \
| * | | | | | Don't allow `where` with non numeric string matches to 0 valuesRyuta Kamizono2019-02-202-1/+6
* | | | | | | Address "warning: in `column': the last argument was passed as a single Hash"Ryuta Kamizono2019-02-213-11/+12
* | | | | | | Extract `default_uniqueness_comparison` to ease to handle mismatched collatio...Ryuta Kamizono2019-02-212-1/+7
* | | | | | | Fix lint `ShadowingOuterLocalVariable`soartec-lab2019-02-211-3/+3
* | | | | | | More exercise test cases for order by table name qualified column nameRyuta Kamizono2019-02-211-8/+8
* | | | | | | Merge pull request #35263 from hatch-carl/reduce-postgres-uuid-allocationsRyuta Kamizono2019-02-212-4/+19
|\ \ \ \ \ \ \
| * | | | | | | Reduce unused allocations when casting UUIDs for PostgresCarl Thuringer2019-02-202-4/+19
* | | | | | | | Merge pull request #35327 from abhaynikam/use-delete-by-and-destroy-by-methodRyuta Kamizono2019-02-204-4/+4
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
| * | | | | | | Replaced usage of where.delete/destroy_all with delete/destroy_byAbhay Nikam2019-02-204-4/+4
* | | | | | | | Merge pull request #35247 from bogdan/fix-source-reflection-reset-codeRyuta Kamizono2019-02-205-24/+22
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix reset of the source association when through association is loadedBogdan Gusiev2019-02-205-24/+22
* | | | | | | | | PostgreSQL: Support endless range values for range typesRyuta Kamizono2019-02-203-2/+18