| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
kamipo/remove_returning_true_in_internal_callbacks
Remove returning true in internal callbacks
|
| |
| |
| |
| |
| | |
`display_deprecation_warning_for_false_terminator` was removed since
3a25cdc.
|
|\ \
| | |
| | | |
Prevent extra `current_database` query for `encoding`/`collation`/`ctype`
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
kamipo/refactor_enum_to_use_value_instead_of_label
Refactor enum to use `value` instead of `label` in the scope
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Delegate `ast` and `locked` to `arel` explicitly
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Currently `ast` and `locked` are used in the internal but delegating to
`arel` is depend on `method_missing`. If a model class is defined these
methods, `select_all` will be broken.
It should be delegated to `arel` explicitly.
|
|\ \ \ \
| | | | |
| | | | | |
Enable extending even if scope returns nil
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove unused `Association#interpolate`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Using `Association#interpolate` was removed since #11251.
|
|/ / / / /
| | | | |
| | | | | |
a user input for a decimal column were ignored by numerically validations
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Doc updates for ActiveRecord::Batches
|
| | | | | |
| | | | | |
| | | | | | |
[ci skip]
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
[ci skip] Changed sentence formation for ActiveRecordRelation#update
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove a redundant test assertion
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Define path with __dir__
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
".. with __dir__ we can restore order in the Universe." - by @fxn
Related to 5b8738c2df003a96f0e490c43559747618d10f5f
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove a duplicate test of migration_test in AR
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove a duplicate test of schema_authorization_test in AR
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
ActiveRecord initialization optimizations
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This change preserves the speedup made in a24912cb1d3 (by avoiding
the wasted shallow dup of @attributes) while ensuring that the
performance of #deep_dup won't be tied to the performance of #initialize
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Memoize the #column_defaults class property, as ActiveRecord does
for other properties in this module.
This change addresses slowness in ActiveRecord initialization
introduced starting in Rails 5.0. This method's performance has not
changed with Rails 5, but it is now called much more frequently than
before: every time an STI model is instantiated.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This change addresses slowness in ActiveRecord initialization
introduced starting in Rails 5.0.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Skip the call to #dup, since it does a shallow copy of attributes,
which is wasted effort, since #deep_dup then replaces that
shallow copy with a #deep_dup of the given attributes.
This change addresses slowness in ActiveRecord initialization
introduced starting in Rails 5.0.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Remove a duplicate test of mysql_rake_test
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
Add a Monitor to ModelSchema#load_schema
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
[Vikrant Chaudhary, David Abdemoulaie, Matthew Draper]
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Extract `JSONSharedTestCases`
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Both `mysql2/json_test.rb` and `postgresql/json_test.rb` have same test
cases.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Fix crashing on circular left join references with scoping
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Follow up of #25702.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Make helper methods in tests to private
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
`make_model` and `make_no_pk_hm_t` in `HasManyThroughAssociationsTest`
are not a test case. it should be private.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Both reference id and type should be `NOT NULL` if `null: false` is specified
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is a regression due to #28282.
Fixes #29136.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Adding Foreing Key - Don't worry about building the identifier if name is already present.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
present.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove a duplicate test of inverse_associations_test in AR
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove unused `JoinPart#name`
|
| |/ / / / / / |
|