Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rails 7.1 use the visitor pattern when building the in clause (6) #2372

Open
wants to merge 9 commits into
base: master
Choose a base branch
from

Conversation

andynu
Copy link
Contributor

@andynu andynu commented Mar 25, 2024

Rails 7.1 use the visitor pattern when building the in clause.

See rails/rails@07d2407

Both table_name and column_name were removed in favor of doing
o.left in the visitor pattern. This is just mimicking the adjustments
from upstream.

Stacked on #2371

Introduce the _connection method which returns whichever is defined
between @unconfigured_connection or @raw_connection.
verify! ensures that @raw_connection is defined.
Rails commit bd19d1baf1 [1] added a check of logger.level which was not
supported by the MockLogger.

This commit adds a mock level method. And limits the missing_method to
respond only to logging calls, so any other calls will raise a
NoMethodError to make future debugging easier.

[1]
rails/rails@bd19d1b
The SchemaMigration object no longer inherits from ActiveRecord::Base.

See "Move SchemaMigration to an independent object"
rails/rails@436277d

Several methods were renamed, and are no longer available as class
methods on SchemaMigration, but as an instance of SchemaMigration
per connection.

The object per connection seems to remove the need to `reset_table_name`
in the tests. That method is not available on the new object.
@andynu andynu changed the title Rails 7.1 use the visitor pattern when building the in clause. Rails 7.1 use the visitor pattern when building the in clause (6/10) Mar 25, 2024
@andynu andynu force-pushed the stack-05-visitor-in-clause branch 3 times, most recently from 0c065c8 to 43c814c Compare March 25, 2024 18:38
@andynu andynu changed the title Rails 7.1 use the visitor pattern when building the in clause (6/10) Rails 7.1 use the visitor pattern when building the in clause (6) Mar 26, 2024
Rails commit e6da3ebd6c6 [1] introduces ColumnDefinition validations for
the keywords used in database commands. This commit adds the additional
keywords supported by this gem.

[1] rails/rails@e6da3eb
See rails/rails@07d2407

Both `table_name` and `column_name` were removed in favor of doing
o.left in the visitor pattern. This is just mimicing the adjustments
from upstream.
@andynu andynu force-pushed the stack-05-visitor-in-clause branch from 43c814c to d976906 Compare April 1, 2024 15:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant