Commit Graph

8610 Commits

Author SHA1 Message Date
Ryuta Kamizono
db8e957c84 Fix non-condition elsif 2020-02-01 09:02:45 +09:00
eileencodes
95ed7e7809
Add support for if_exists/if_not_exists on remove_column/add_column
This PR adds support for `if_exists` on `remove_column` and
`if_not_exists` on `add_column` to support silently ignoring migrations
if the remove tries to remove a non-existent column or an add tries to
add an already existing column.

We (GitHub) have custom monkey-patched support for these features and
would like to upstream this behavior.

This matches the same behavior that is supported for `create_table` and
`drop_table`. The behavior for sqlite is different from mysql/postgres
and sqlite for remove column and that is reflected in the tests.
2020-01-30 09:50:44 -05:00
Ryuta Kamizono
1f08fec27e Generalize FrozenError on write attribute 2020-01-29 11:23:41 +09:00
Ryuta Kamizono
5aae2b2783 Simplify RUBY_VERSION checking in tests 2020-01-29 09:31:00 +09:00
Ryuta Kamizono
df9b61f38f Fix CI failure on Ruby master
Ref https://github.com/ruby/ruby/pull/2857.
2020-01-29 09:22:25 +09:00
Eileen M. Uchitelle
1795a2f5e8
Merge pull request #38339 from eileencodes/force-connected_to-to-load-the-relation
Force connected_to to load the records if it's a Relation
2020-01-28 14:40:57 -05:00
Ryuta Kamizono
c4edca3612 Fix test_with_abstract_class_scope_should_be_executed_in_correct_context
To allow MS SQL Server's quote.
2020-01-29 03:50:21 +09:00
eileencodes
1d03262131
Force connected_to to load the records if it's a Relation
Fixes #38332

If the `connected_to` block returns a relation and does not inspect, or
load that relation before returning it, the block will exit before the
database is queried. This causes the wrong database connection to be
queried.

The consequences of this are getting records from the primary instead of
the replica, and potentially having database performance impact.

Relations lazily query the database. If you return the relation from the
block like:

```
posts = ActiveRecord::Base.connected_to(role: :reading) { Post.where(id: 1) }
```

`posts.first` will be queried from the `writing` connection instead
because it's lazy and performed outside the block. Any query that loads
the relation (ie `to_a`) inside the block would eagerly load the
relation's records and not exhibit this bug.

`connected_to` now checks if the return value is a `Relation` and if so
calls `load`.

Co-authored-by: Aaron Patterson <aaron.patterson@gmail.com>
2020-01-28 13:25:19 -05:00
Ryuta Kamizono
95bd55eca3
Merge pull request #38319 from kamipo/make_default_scoped_public
Expose `klass.default_scoped` as public API
2020-01-28 05:53:13 +09:00
Ryuta Kamizono
15426be1a1 Avoid making query when using where(attr: out-of-range-value)
Like as before Rails 6.0.

Closes #38309.
2020-01-27 14:26:26 +09:00
Ryuta Kamizono
0d0c30e534 Avoid making query when using where(attr: []) for pluck
Follow up #37266.
2020-01-27 13:59:34 +09:00
Ryuta Kamizono
dc06d4bfb0 current_scope{,=} are public methods
`send` is not necessary.
2020-01-27 10:30:47 +09:00
Ryuta Kamizono
7cc96c9a9d Expose klass.default_scoped as public API
`default_scoped` is an only way to enforce returning a scope with
default scopes in a scoping, and it is needed for migration to avoid
leaking scope (#35280, #37727).

Closes #38241.
2020-01-27 10:01:05 +09:00
eileencodes
1ee4a8812f
Move advisory lock to it's own connection
This PR moves advisory lock to it's own connection instead of
`ActiveRecord::Base` to fix #37748. As a note the issue is present on
both mysql and postgres. We don't see it on sqlite3 because sqlite3
doesn't support advisory locks.

The underlying problem only appears if:

1) the app is using multiple databases, and therefore establishing a new
connetion in the abstract models
2) the app has a migration that loads a model (ex `Post.update_all`)
which causes that new connection to get established.

This is because when Rails runs migrations the default connections are
established, the lock is taken out on the `ActiveRecord::Base`
connection. When the migration that calls a model is loaded, a new
connection will be established and the lock will automatically be
released.

When Rails goes to release the lock in the ensure block it will find
that the connection has been closed. Even if the connection wasn't
closed the lock would no longer exist on that connection.

We originally considered checking if the connection was active, but
ultimately that would hide that the advisory locks weren't working
correctly because there'd be no lock to release.

We also considered making the lock more granular - that it only blocked
on each migration individually instead of all the migrations for that
connection. This might be the right move going forward, but right now
multi-db migrations that load models are very broken in Rails 6.0 and
master.

John and I don't love this fix, it requires a bit too much knowledge of
internals and how Rails picks up connections. However, it does fix the
issue, makes the lock more global, and makes the lock more resilient to
changing connections.

Co-authored-by: John Crepezzi <john.crepezzi@gmail.com>
2020-01-23 14:36:32 -05:00
Eileen M. Uchitelle
b0d4413ae7
Merge pull request #38247 from rosa/save-context-with-response
Allow updating the database selector context with the response and not only the request
2020-01-23 13:54:00 -05:00
Katrina Owen
2c2ff8228e
Allow schema cache path to be defined in the config file
This updates the database tasks for dumping the Active Record schema cache as
well as clearing the schema cache file, allowing the path to be defined in the
database configuration YAML file.

As before, the value can also be defined in an ENV variable, though this would
not work for a multi-db application. If the value is specified neither in the
DB config, nor in the ENV, then the path will continue to be derived from the
DB config spec_name.

Note that in order to make this change cleaner I also moved a bit of logic
out of a rake task and into the DatabaseTasks class, for symmetry.

We have two rake tasks for the schema cache:

    $ rake db:schema:cache:dump
    $ rake db:schema:cache:clear

The cache:dump task was implemented in DatabaseTasks, but the
cache:clear one was not.

I also added some tests for the behavior that I was changing, since some of
the code paths weren't tested.
2020-01-23 08:18:23 -07:00
eileencodes
7315c91d45
Deprecate #remove_connection in favor of #remove_connection_pool
Calling `#remove_connection` on the handler is deprecated in favor of
`#remove_connection_pool`. This change was made to support changing the
return value from a hash to a `DatabaseConfig` object.
`#remove_connection` will be removed in 6.2.

NOTE: `#remove_connection` on `ActiveRecord::Base` will also now return
a `DatabaseConfig` object. We didn't use a deprecation here since
it's not documented that this method used to return a `Hash`.

Co-authored-by: John Crepezzi <john.crepezzi@gmail.com>
2020-01-21 16:49:20 -05:00
Ryuta Kamizono
0dad1e3e77 *_for_alter methods should also takes keyword arguments
Follow up 5572df92be8c529909277ee8e4ac5b9da26b893a.
2020-01-20 09:15:29 +09:00
Ryuta Kamizono
5572df92be Invertable methods should have compatible method signature
Otherwise it is hard to invert non-kwargs method to kwargs method.

This makes table and column options to be synchronized as kwargs.
2020-01-20 06:57:16 +09:00
Ryuta Kamizono
01e248b4d0 add_foreign_key's arguments are compatible (invertable) for remove_foreign_key without customize
So the custom `invert_add_foreign_key` is a little redundant.
2020-01-20 05:33:24 +09:00
Ryuta Kamizono
7fa1f4014b Fix typo 2020-01-20 01:35:12 +09:00
eileencodes
2a53fe638d
Deprecate and replace #default_hash and #[]
Database configurations are now objects almost everywhere, so we don't
need to fake access to a hash with `#default_hash` or it's alias `#[]`.
Applications should `configs_for` and pass `env_name` and `spec_name` to
get the database config object. If you're looking for the default for
the test environment you can pass `configs_for(env_name: "test", spec_name:
"primary")`. Change test to developement to get the dev config, etc.

`#default_hash` and `#[]` will be removed in 6.2.

Co-authored-by: John Crepezzi <john.crepezzi@gmail.com>
2020-01-17 16:08:12 -05:00
Rosa Gutierrez
62e05ce96f Allow updating the database selector context with the response
Currently the database selector middleware only passes the request to
the context.

This is enough for the resolver to decide whether to switch
to the primary, but for a custom resolver and a custom context class,
it's not enough to persist any information for subsequent requests. For
example, say you want to use a cookie to decide whether when to switch.
It's not possible to set the response cookie from this middleware, since
neither the context nor the resolver have access to it.

This includes an extra step to update the context after the response has
been computed.
2020-01-16 19:25:22 +01:00
Ryuta Kamizono
36e6a51662 Fix CI failures due to MySQL 8.0.19 no longer output integer display width unless ZEROFILL is also used
https://buildkite.com/rails/rails/builds/66475#7a6c54bc-4ed3-4676-b196-4fee031f43bf

Fixes #38226.
2020-01-15 21:40:10 +09:00
Douglas Lara
10803d6985 fix typos 2020-01-15 00:11:40 -03:00
Ryuta Kamizono
164069fd2d Fix random CI failure due to non-deterministic sorting order
https://buildkite.com/rails/rails/builds/66424#a1fdb92a-a9a0-4ff2-afc8-a59410cd4fdf/1016-1027
2020-01-14 08:44:05 +09:00
Gannon McGibbon
f72f743dc3 Add scale support to ActiveRecord::Validations::NumericalityValidator 2020-01-13 11:00:22 -05:00
Tom Rossi
9bfe89e68e Introducing the where.missing query method. 2020-01-11 09:14:25 -05:00
Edouard CHIN
6488f52b83 Fix NumericalityValidator when precision is too high:
- When a column with a precision that is higher than what the system
  allows, it would result in an error:

  ```sh
    require "bigdecimal/util"

    123.4.to_d(20) => ArgumentError, precision is too high
  ```

  To fix that problem we need to check what the max number of digits
  a Float is allowed to have, we can achieve that with `BigDecimal.double_fig`

  Fix #38209
2020-01-10 13:31:27 -04:00
Eileen M. Uchitelle
2c07d162b3
Merge pull request #38204 from eileencodes/fix-reading-conn-so-text-fixtures-raise-when-writing-on-replica
Ensure the reading connection always raises if we try to write
2020-01-10 11:15:25 -05:00
Rafael França
89a7219db8
Merge pull request #38193 from Edouard-chin/ec-fix-numericality-on-abstract-class
Fix numericality validator when defined on abstract class:
2020-01-10 11:12:27 -05:00
Edouard CHIN
c507e9302a Fix numericality validator when defined on abstract class:
- ### Problem

  It's no longer possible to define a numeric validation on abstract
  class:

  ```ruby
    class AnimalsBase < ApplicationRecord
      self.abstract_class = true

      validates :age, numericality: { min: 18 }
    end

    class Dog < AnimalsBase
    end

    Dog.create!(age: 0) => ActiveRecord::TableNotSpecified: Dog has no table configured. Set one with Dog.table_name=
  ```

  ### Solution

  Instead of trying to get the type for attribute on the class
  defining the validation, get it from the record being validated.
2020-01-10 10:35:54 -04:00
eileencodes
1c98e6c005
Ensure the reading connection always raises if we try to write
Since test fixtures share connections (due to transactional tests) we
end up overwriting the reading configuration so Rails doesn't recognize
it as a replica connection.

This change ensures that if we're using the `reading` role that
connections will always have prevent writes turned on.

If you need a replica connection that does not block writes, you should
use a different role name other than `:reading`.

The db selector test and connection handlers test have been updated to
test for these changes. In the db selector test we don't always have a
writing handler so I updated test fixtures to return if that's nil.

Lastly one test needed to be updated to use a different handler name due
to it needing to write to successfully test what it needs to test.

Fixes #37765
2020-01-09 18:34:28 -05:00
eileencodes
d89ee16bbc
Fix the reading can write resolver test
This test wasn't correct. If we're calling `resolver.read` and want to
actually read from the replicas then the role would be reading not
writing. This was because the session store needed to be changed so that
we actually are "reading from the replicas" instead of reading from the
primary.
2020-01-09 16:45:01 -05:00
eileencodes
b74fbe4e51
Deprecate "primary" as a connection_specification_name for ActiveRecord::Base
As multiple databases have evolved it's becoming more and more
confusing that we have a `connection_specification_name` that defaults
to "primary" and a `spec_name` on the database objects that defaults to
"primary" (my bad).

Even more confusing is that we use the class name for all
non-ActiveRecord::Base abstract classes that establish connections. For
example connections established on `class MyOtherDatabaseModel <
ApplicationRecord` will use `"MyOtherDatabaseModel"` as it's connection
specification name while `ActiveRecord::Base` uses `"primary"`.

This PR deprecates the use of the name `"primary"` as the
`connection_specification_name` for `ActiveRecord::Base` in favor of
using `"ActiveRecord::Base"`.

In this PR the following is true:

* If `handler.establish_connection(:primary)` is called, `"primary"`
will not throw a deprecation warning and can still be used for the
`connection_specification_name`. This also fixes a bug where using this
method to establish a connection could accidentally overwrite the actual
`ActiveRecord::Base` connection IF that connection was not using a
configuration named `:primary`.
* Calling `handler.retrieve_connection "primary"` when
`handler.establish_connection :primary` has never been called will
return the connection for `ActiveRecord::Base` and throw a deprecation
warning.
* Calling `handler.remove_connection "primary"` when
`handler.establish_connection :primary` has never been called will
remove the connection for `ActiveRecord::Base` and throw a deprecation
warning.

See #38179 for details on more motivations for this change.

Co-authored-by: John Crepezzi <john.crepezzi@gmail.com>
2020-01-08 16:49:41 -05:00
Rafael França
2c7553cd31
Merge pull request #38118 from mkrfowler/reduce_preloaded_records
Reduce the number of records loaded when preloading across a `has_one`
2020-01-08 11:45:53 -03:00
Eileen M. Uchitelle
09fbee82dc
Merge pull request #38179 from eileencodes/fix-resolve-symbol-conn
Restore previous behavior of parallel test databases
2020-01-07 16:59:02 -05:00
eileencodes
c05098852c
Restore previous behavior of parallel test databases
This commit is somewhat of a bandaid fix for a bug that was revealed in #38029
and then #38151. #38151 can cause problems in certain cases when an app has
a 3-tier config, with replicas, because it reorders the configuration
and changes the implict default connection that gets picked up.

If an app calls `establish_connection` with no arguments or doesn't call
`connects_to` in `ApplicationRecord` AND uses parallel testing
databases, the application may pick up the wrong configuration.

This is because when the code in #38151 loops through the configurations
it will update the non-replica configurations and then put them at the
end of the list. If you don't specify which connection you want, Rails
will pick up the _first_ connection for that environment. So given the
following configuration:

```
test:
  primary:
    database: my_db
  replica:
    database: my_db
    replica: true
```

The database configurations will get reordered to be `replica`,
`primary` and when Rails calls `establish_connection` with no arguments
it will pick up `replica` because it's first in the list.

Looking at this bug it shows that calling `establish_connection` with no
arguments (which will pick up the default env + first configuration in
the list) OR when `establish_connection` is called with an environment
like `:test` it will also pick up that env's first configuration. This
can have surprising behavior in a couple cases:

1) In the parallel testing changes we saw users getting the wrong db
configuration and hitting an `ActiveRecord::ReadOnlyError`
2) Writing a configuration that puts `replica` before `primary`, also
resulting in a `ActiveRecord::ReadOnlyError`

The real fix for this issue is to deprecate calling
`establish_connection` with an env or nothing and require an explcit
configuration (like `primary`). This would also involve blessing
`:primary` as the default connection Rails looks for on boot. In
addition, this would require us deprecating connection specification
name "primary" in favor of the class name always since that will get
mega-confusing (seriously, it's already mega-confusing).

We'll work on fixing these underlying issues, but wanted to get a fix
out that restores previous behavior.

Co-authored-by: John Crepezzi <john.crepezzi@gmail.com>
2020-01-07 16:03:00 -05:00
Michael Fowler
9aa59f9d4a Avoid extraneous preloading when loading across has_one associations
The Preloader relies on other objects to bind the retrieved records to their
parents. When executed across a hash, it assumes that the results of
`preloaded_records` is the appropriate set of records to pass in to the next
layer.

Filtering based on the reflection properties in `preloaded_records` allows us to
avoid excessive preloading in the instance where we are loading across a
`has_one` association distinguished by an order (e.g. "last comment" or
similar), by dropping these records before they are returned to the
Preloader. In this situation, we avoid potentially very long key lists in
generated queries and the consequential AR object instantiations.

This is mostly relevant if the underlying linked set has relatively many
records, because this is effectively a multiplier on the number of records
returned on the far side of the preload. Unfortunately, avoiding the
over-retrieval of the `has_one` association seems to require substantial changes
to the preloader design, and probably adaptor-specific logic -- it is a
top-by-group problem.
2020-01-08 08:14:04 +13:00
Rafael França
7085b5467e
Merge pull request #38131 from kddeisz/nulls
Allow #nulls_first and #nulls_last in PostgreSQL
2020-01-07 11:47:46 -03:00
Gannon McGibbon
f337669b0b
Merge pull request #36664 from gmcgibbon/add_ar_numericality_validation
Add ActiveRecord::Validations::NumericalityValidator
2020-01-06 19:23:23 -05:00
Gannon McGibbon
b5c9974fa7 Add ActiveRecord::Validations::NumericalityValidator
Add Active Record numericality validator with support for casting
floats using a database columns' precision value.
2020-01-06 19:01:29 -05:00
Rafael França
00b277bda0
Merge pull request #38166 from jules2689/master
Only assign @new_record_before_save once in autosave_association
2020-01-06 18:56:43 -03:00
Julian Nadeau
901d62c586
Only assign @new_record_before_save once in autosave_association
If we defined a callback before an association that updates the object, then this may end up being
manipulated to being `false` when it should be `true`. We guard this be only defining it once.

The implication of it being false, in this case, is that the children aren't updated with the parent_id
and so they fail to associate to one another.

See https://github.com/rails/rails/issues/38120 for more details
2020-01-06 12:57:33 -05:00
Simon Perepelitsa
b91dd419e2 Update tests 2020-01-06 20:43:20 +03:00
Eileen M. Uchitelle
be40e8e5af
Merge pull request #38099 from alipman88/avoid_unecessary_query_if_cache_versioning_enabled
Avoid unnecessary SQL query when calling ActiveRecord::Relation#cache_key
2020-01-06 08:52:41 -05:00
Rafael França
f619ac91d3
Merge pull request #37299 from kobsy/specify-pk-as-conflict-target
Include primary key in insert_all conflict target if specified
2020-01-05 10:09:48 -03:00
Mike Vastola
3806d073bf Fix adding non-null column to existing SQLite3 table
Forces adding the column by way of copying the table due to lack of
support in SQLite3 adapter.

Fixes #38129
2020-01-04 11:05:01 -05:00
Ryuta Kamizono
5a010d8537 Merge pull request #38145 from sinsoku/avoid_assigning_the_same_value_to_join_values
Avoid assigning duplicate values to join_values
2020-01-04 21:31:36 +09:00
sinsoku
8d58bdda20
Allow or in case of from clause with same value 2020-01-04 20:32:51 +09:00