activerecord 7.1.5.2 → 8.1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +567 -2443
- data/README.rdoc +16 -16
- data/examples/performance.rb +2 -2
- data/lib/active_record/association_relation.rb +3 -2
- data/lib/active_record/associations/alias_tracker.rb +31 -23
- data/lib/active_record/associations/association.rb +43 -12
- data/lib/active_record/associations/belongs_to_association.rb +31 -8
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +3 -2
- data/lib/active_record/associations/builder/association.rb +23 -11
- data/lib/active_record/associations/builder/belongs_to.rb +18 -4
- data/lib/active_record/associations/builder/collection_association.rb +7 -3
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +2 -2
- data/lib/active_record/associations/builder/has_many.rb +3 -4
- data/lib/active_record/associations/builder/has_one.rb +3 -4
- data/lib/active_record/associations/builder/singular_association.rb +33 -5
- data/lib/active_record/associations/collection_association.rb +17 -9
- data/lib/active_record/associations/collection_proxy.rb +36 -5
- data/lib/active_record/associations/deprecation.rb +88 -0
- data/lib/active_record/associations/disable_joins_association_scope.rb +1 -1
- data/lib/active_record/associations/errors.rb +268 -0
- data/lib/active_record/associations/has_many_association.rb +1 -1
- data/lib/active_record/associations/has_many_through_association.rb +10 -3
- data/lib/active_record/associations/join_dependency/join_association.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +4 -2
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +4 -3
- data/lib/active_record/associations/preloader/batch.rb +7 -1
- data/lib/active_record/associations/preloader/branch.rb +8 -1
- data/lib/active_record/associations/preloader/through_association.rb +1 -3
- data/lib/active_record/associations/singular_association.rb +14 -3
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +250 -315
- data/lib/active_record/asynchronous_queries_tracker.rb +28 -24
- data/lib/active_record/attribute_assignment.rb +0 -2
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/primary_key.rb +25 -61
- data/lib/active_record/attribute_methods/query.rb +34 -0
- data/lib/active_record/attribute_methods/read.rb +1 -13
- data/lib/active_record/attribute_methods/serialization.rb +20 -27
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +19 -20
- data/lib/active_record/attribute_methods.rb +71 -75
- data/lib/active_record/attributes.rb +96 -68
- data/lib/active_record/autosave_association.rb +93 -58
- data/lib/active_record/base.rb +5 -7
- data/lib/active_record/callbacks.rb +1 -1
- data/lib/active_record/coders/json.rb +14 -5
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +50 -126
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +16 -4
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +52 -13
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +681 -135
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +165 -86
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +226 -78
- data/lib/active_record/connection_adapters/abstract/quoting.rb +79 -114
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +11 -7
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +37 -36
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +2 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +136 -34
- data/lib/active_record/connection_adapters/abstract/transaction.rb +163 -68
- data/lib/active_record/connection_adapters/abstract_adapter.rb +197 -129
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +112 -63
- data/lib/active_record/connection_adapters/column.rb +17 -4
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +11 -3
- data/lib/active_record/connection_adapters/mysql/quoting.rb +50 -57
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +2 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +41 -10
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +79 -46
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +97 -101
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +14 -33
- data/lib/active_record/connection_adapters/pool_config.rb +14 -13
- data/lib/active_record/connection_adapters/postgresql/column.rb +4 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +98 -44
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +3 -3
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +10 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +14 -4
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +79 -68
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +2 -4
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +9 -17
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +44 -41
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +69 -32
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +155 -75
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +104 -121
- data/lib/active_record/connection_adapters/schema_cache.rb +126 -133
- data/lib/active_record/connection_adapters/sqlite3/column.rb +14 -1
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +91 -95
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +57 -54
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +16 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +13 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +43 -2
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +38 -15
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +231 -111
- data/lib/active_record/connection_adapters/statement_pool.rb +4 -2
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +40 -69
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +19 -65
- data/lib/active_record/connection_adapters.rb +66 -0
- data/lib/active_record/connection_handling.rb +88 -46
- data/lib/active_record/core.rb +142 -58
- data/lib/active_record/counter_cache.rb +52 -18
- data/lib/active_record/database_configurations/connection_url_resolver.rb +9 -2
- data/lib/active_record/database_configurations/database_config.rb +28 -5
- data/lib/active_record/database_configurations/hash_config.rb +103 -41
- data/lib/active_record/database_configurations/url_config.rb +30 -1
- data/lib/active_record/database_configurations.rb +8 -4
- data/lib/active_record/delegated_type.rb +43 -19
- data/lib/active_record/dynamic_matchers.rb +56 -71
- data/lib/active_record/encryption/config.rb +3 -1
- data/lib/active_record/encryption/encryptable_record.rb +12 -12
- data/lib/active_record/encryption/encrypted_attribute_type.rb +35 -6
- data/lib/active_record/encryption/encryptor.rb +58 -22
- data/lib/active_record/encryption/extended_deterministic_queries.rb +4 -2
- data/lib/active_record/encryption/key_provider.rb +1 -1
- data/lib/active_record/encryption/message_pack_message_serializer.rb +76 -0
- data/lib/active_record/encryption/message_serializer.rb +4 -0
- data/lib/active_record/encryption/null_encryptor.rb +4 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +4 -0
- data/lib/active_record/encryption/scheme.rb +9 -2
- data/lib/active_record/enum.rb +57 -36
- data/lib/active_record/errors.rb +76 -26
- data/lib/active_record/explain.rb +14 -25
- data/lib/active_record/explain_registry.rb +51 -2
- data/lib/active_record/filter_attribute_handler.rb +73 -0
- data/lib/active_record/fixture_set/table_row.rb +19 -2
- data/lib/active_record/fixtures.rb +39 -35
- data/lib/active_record/future_result.rb +21 -13
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +5 -3
- data/lib/active_record/insert_all.rb +28 -20
- data/lib/active_record/integration.rb +4 -1
- data/lib/active_record/internal_metadata.rb +48 -34
- data/lib/active_record/locking/optimistic.rb +15 -7
- data/lib/active_record/locking/pessimistic.rb +5 -0
- data/lib/active_record/log_subscriber.rb +3 -34
- data/lib/active_record/message_pack.rb +1 -1
- data/lib/active_record/middleware/shard_selector.rb +34 -17
- data/lib/active_record/migration/command_recorder.rb +46 -14
- data/lib/active_record/migration/compatibility.rb +40 -25
- data/lib/active_record/migration/default_schema_versions_formatter.rb +30 -0
- data/lib/active_record/migration/default_strategy.rb +4 -5
- data/lib/active_record/migration/pending_migration_connection.rb +2 -2
- data/lib/active_record/migration.rb +119 -103
- data/lib/active_record/model_schema.rb +66 -78
- data/lib/active_record/nested_attributes.rb +17 -9
- data/lib/active_record/persistence.rb +161 -454
- data/lib/active_record/query_cache.rb +33 -15
- data/lib/active_record/query_logs.rb +106 -39
- data/lib/active_record/query_logs_formatter.rb +17 -28
- data/lib/active_record/querying.rb +28 -16
- data/lib/active_record/railtie.rb +61 -74
- data/lib/active_record/railties/controller_runtime.rb +19 -5
- data/lib/active_record/railties/databases.rake +64 -78
- data/lib/active_record/railties/job_checkpoints.rb +15 -0
- data/lib/active_record/railties/job_runtime.rb +10 -11
- data/lib/active_record/reflection.rb +147 -53
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +153 -73
- data/lib/active_record/relation/calculations.rb +146 -96
- data/lib/active_record/relation/delegation.rb +30 -23
- data/lib/active_record/relation/finder_methods.rb +64 -34
- data/lib/active_record/relation/merger.rb +12 -14
- data/lib/active_record/relation/predicate_builder/array_handler.rb +2 -2
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +19 -11
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +8 -8
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +4 -3
- data/lib/active_record/relation/predicate_builder.rb +25 -10
- data/lib/active_record/relation/query_attribute.rb +4 -2
- data/lib/active_record/relation/query_methods.rb +351 -124
- data/lib/active_record/relation/spawn_methods.rb +9 -25
- data/lib/active_record/relation/where_clause.rb +17 -30
- data/lib/active_record/relation.rb +590 -124
- data/lib/active_record/result.rb +131 -59
- data/lib/active_record/runtime_registry.rb +44 -21
- data/lib/active_record/sanitization.rb +33 -25
- data/lib/active_record/schema.rb +8 -6
- data/lib/active_record/schema_dumper.rb +66 -31
- data/lib/active_record/schema_migration.rb +31 -14
- data/lib/active_record/scoping/named.rb +6 -2
- data/lib/active_record/scoping.rb +0 -1
- data/lib/active_record/secure_token.rb +3 -3
- data/lib/active_record/signed_id.rb +68 -20
- data/lib/active_record/statement_cache.rb +29 -25
- data/lib/active_record/store.rb +51 -22
- data/lib/active_record/structured_event_subscriber.rb +85 -0
- data/lib/active_record/table_metadata.rb +7 -33
- data/lib/active_record/tasks/abstract_tasks.rb +76 -0
- data/lib/active_record/tasks/database_tasks.rb +118 -90
- data/lib/active_record/tasks/mysql_database_tasks.rb +3 -42
- data/lib/active_record/tasks/postgresql_database_tasks.rb +14 -40
- data/lib/active_record/tasks/sqlite_database_tasks.rb +17 -28
- data/lib/active_record/test_databases.rb +14 -4
- data/lib/active_record/test_fixtures.rb +123 -89
- data/lib/active_record/testing/query_assertions.rb +127 -0
- data/lib/active_record/timestamp.rb +6 -4
- data/lib/active_record/token_for.rb +22 -12
- data/lib/active_record/touch_later.rb +1 -1
- data/lib/active_record/transaction.rb +129 -0
- data/lib/active_record/transactions.rb +97 -18
- data/lib/active_record/translation.rb +0 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +2 -1
- data/lib/active_record/type/internal/timezone.rb +7 -0
- data/lib/active_record/type/json.rb +15 -2
- data/lib/active_record/type/serialized.rb +12 -7
- data/lib/active_record/type/type_map.rb +1 -1
- data/lib/active_record/type_caster/connection.rb +5 -4
- data/lib/active_record/validations/associated.rb +10 -4
- data/lib/active_record/validations/uniqueness.rb +23 -18
- data/lib/active_record/validations.rb +4 -1
- data/lib/active_record.rb +203 -59
- data/lib/arel/alias_predication.rb +3 -1
- data/lib/arel/collectors/bind.rb +4 -2
- data/lib/arel/collectors/composite.rb +7 -0
- data/lib/arel/collectors/sql_string.rb +2 -2
- data/lib/arel/collectors/substitute_binds.rb +3 -3
- data/lib/arel/crud.rb +8 -11
- data/lib/arel/delete_manager.rb +5 -0
- data/lib/arel/nodes/binary.rb +1 -7
- data/lib/arel/nodes/bound_sql_literal.rb +9 -5
- data/lib/arel/nodes/count.rb +2 -2
- data/lib/arel/nodes/delete_statement.rb +4 -2
- data/lib/arel/nodes/function.rb +4 -10
- data/lib/arel/nodes/named_function.rb +2 -2
- data/lib/arel/nodes/{and.rb → nary.rb} +5 -2
- data/lib/arel/nodes/node.rb +6 -5
- data/lib/arel/nodes/sql_literal.rb +8 -1
- data/lib/arel/nodes/update_statement.rb +4 -2
- data/lib/arel/nodes.rb +2 -4
- data/lib/arel/predications.rb +1 -1
- data/lib/arel/select_manager.rb +14 -5
- data/lib/arel/table.rb +3 -7
- data/lib/arel/tree_manager.rb +3 -2
- data/lib/arel/update_manager.rb +7 -1
- data/lib/arel/visitors/dot.rb +3 -3
- data/lib/arel/visitors/mysql.rb +9 -4
- data/lib/arel/visitors/postgresql.rb +56 -12
- data/lib/arel/visitors/sqlite.rb +80 -8
- data/lib/arel/visitors/to_sql.rb +34 -37
- data/lib/arel.rb +10 -4
- data/lib/rails/generators/active_record/application_record/USAGE +1 -1
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +4 -1
- metadata +23 -14
- data/lib/active_record/explain_subscriber.rb +0 -34
- data/lib/active_record/normalization.rb +0 -167
- data/lib/active_record/relation/record_fetch_warning.rb +0 -49
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Arel # :nodoc: all
|
|
4
4
|
module Nodes
|
|
5
5
|
class DeleteStatement < Arel::Nodes::Node
|
|
6
|
-
attr_accessor :relation, :wheres, :groups, :havings, :orders, :limit, :offset, :key
|
|
6
|
+
attr_accessor :relation, :wheres, :groups, :havings, :orders, :limit, :offset, :comment, :key
|
|
7
7
|
|
|
8
8
|
def initialize(relation = nil, wheres = [])
|
|
9
9
|
super()
|
|
@@ -14,6 +14,7 @@ module Arel # :nodoc: all
|
|
|
14
14
|
@orders = []
|
|
15
15
|
@limit = nil
|
|
16
16
|
@offset = nil
|
|
17
|
+
@comment = nil
|
|
17
18
|
@key = nil
|
|
18
19
|
end
|
|
19
20
|
|
|
@@ -24,7 +25,7 @@ module Arel # :nodoc: all
|
|
|
24
25
|
end
|
|
25
26
|
|
|
26
27
|
def hash
|
|
27
|
-
[self.class, @relation, @wheres, @orders, @limit, @offset, @key].hash
|
|
28
|
+
[self.class, @relation, @wheres, @orders, @limit, @offset, @comment, @key].hash
|
|
28
29
|
end
|
|
29
30
|
|
|
30
31
|
def eql?(other)
|
|
@@ -36,6 +37,7 @@ module Arel # :nodoc: all
|
|
|
36
37
|
self.havings == other.havings &&
|
|
37
38
|
self.limit == other.limit &&
|
|
38
39
|
self.offset == other.offset &&
|
|
40
|
+
self.comment == other.comment &&
|
|
39
41
|
self.key == other.key
|
|
40
42
|
end
|
|
41
43
|
alias :== :eql?
|
data/lib/arel/nodes/function.rb
CHANGED
|
@@ -5,28 +5,22 @@ module Arel # :nodoc: all
|
|
|
5
5
|
class Function < Arel::Nodes::NodeExpression
|
|
6
6
|
include Arel::WindowPredications
|
|
7
7
|
include Arel::FilterPredications
|
|
8
|
-
attr_accessor :expressions, :alias, :distinct
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
attr_accessor :expressions, :distinct
|
|
10
|
+
|
|
11
|
+
def initialize(expr)
|
|
11
12
|
super()
|
|
12
13
|
@expressions = expr
|
|
13
|
-
@alias = aliaz && SqlLiteral.new(aliaz)
|
|
14
14
|
@distinct = false
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
-
def as(aliaz)
|
|
18
|
-
self.alias = SqlLiteral.new(aliaz)
|
|
19
|
-
self
|
|
20
|
-
end
|
|
21
|
-
|
|
22
17
|
def hash
|
|
23
|
-
[@expressions, @
|
|
18
|
+
[@expressions, @distinct].hash
|
|
24
19
|
end
|
|
25
20
|
|
|
26
21
|
def eql?(other)
|
|
27
22
|
self.class == other.class &&
|
|
28
23
|
self.expressions == other.expressions &&
|
|
29
|
-
self.alias == other.alias &&
|
|
30
24
|
self.distinct == other.distinct
|
|
31
25
|
end
|
|
32
26
|
alias :== :eql?
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
module Arel # :nodoc: all
|
|
4
4
|
module Nodes
|
|
5
|
-
class
|
|
5
|
+
class Nary < Arel::Nodes::NodeExpression
|
|
6
6
|
attr_reader :children
|
|
7
7
|
|
|
8
8
|
def initialize(children)
|
|
@@ -23,7 +23,7 @@ module Arel # :nodoc: all
|
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
def hash
|
|
26
|
-
children.hash
|
|
26
|
+
[self.class, children].hash
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def eql?(other)
|
|
@@ -32,5 +32,8 @@ module Arel # :nodoc: all
|
|
|
32
32
|
end
|
|
33
33
|
alias :== :eql?
|
|
34
34
|
end
|
|
35
|
+
|
|
36
|
+
And = Class.new(Nary)
|
|
37
|
+
Or = Class.new(Nary)
|
|
35
38
|
end
|
|
36
39
|
end
|
data/lib/arel/nodes/node.rb
CHANGED
|
@@ -6,7 +6,7 @@ module Arel # :nodoc: all
|
|
|
6
6
|
#
|
|
7
7
|
# Active Record uses Arel to compose SQL statements. Instead of building SQL strings directly, it's building an
|
|
8
8
|
# abstract syntax tree (AST) of the statement using various types of Arel::Nodes::Node. Each node represents a
|
|
9
|
-
# fragment of
|
|
9
|
+
# fragment of an SQL statement.
|
|
10
10
|
#
|
|
11
11
|
# The intermediate representation allows Arel to compile the statement into the database's specific SQL dialect
|
|
12
12
|
# only before sending it without having to care about the nuances of each database when building the statement.
|
|
@@ -127,7 +127,7 @@ module Arel # :nodoc: all
|
|
|
127
127
|
# Factory method to create a Nodes::Grouping node that has an Nodes::Or
|
|
128
128
|
# node as a child.
|
|
129
129
|
def or(right)
|
|
130
|
-
Nodes::Grouping.new Nodes::Or.new(self, right)
|
|
130
|
+
Nodes::Grouping.new Nodes::Or.new([self, right])
|
|
131
131
|
end
|
|
132
132
|
|
|
133
133
|
###
|
|
@@ -147,11 +147,12 @@ module Arel # :nodoc: all
|
|
|
147
147
|
# Maybe we should just use `Table.engine`? :'(
|
|
148
148
|
def to_sql(engine = Table.engine)
|
|
149
149
|
collector = Arel::Collectors::SQLString.new
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
engine.with_connection do |connection|
|
|
151
|
+
connection.visitor.accept(self, collector).value
|
|
152
|
+
end
|
|
152
153
|
end
|
|
153
154
|
|
|
154
|
-
def fetch_attribute
|
|
155
|
+
def fetch_attribute(&)
|
|
155
156
|
end
|
|
156
157
|
|
|
157
158
|
def equality?; false; end
|
|
@@ -8,11 +8,18 @@ module Arel # :nodoc: all
|
|
|
8
8
|
include Arel::AliasPredication
|
|
9
9
|
include Arel::OrderPredications
|
|
10
10
|
|
|
11
|
+
attr_reader :retryable
|
|
12
|
+
|
|
13
|
+
def initialize(string, retryable: false)
|
|
14
|
+
@retryable = retryable
|
|
15
|
+
super(string)
|
|
16
|
+
end
|
|
17
|
+
|
|
11
18
|
def encode_with(coder)
|
|
12
19
|
coder.scalar = self.to_s
|
|
13
20
|
end
|
|
14
21
|
|
|
15
|
-
def fetch_attribute
|
|
22
|
+
def fetch_attribute(&)
|
|
16
23
|
end
|
|
17
24
|
|
|
18
25
|
def +(other)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Arel # :nodoc: all
|
|
4
4
|
module Nodes
|
|
5
5
|
class UpdateStatement < Arel::Nodes::Node
|
|
6
|
-
attr_accessor :relation, :wheres, :values, :groups, :havings, :orders, :limit, :offset, :key
|
|
6
|
+
attr_accessor :relation, :wheres, :values, :groups, :havings, :orders, :limit, :offset, :comment, :key
|
|
7
7
|
|
|
8
8
|
def initialize(relation = nil)
|
|
9
9
|
super()
|
|
@@ -15,6 +15,7 @@ module Arel # :nodoc: all
|
|
|
15
15
|
@orders = []
|
|
16
16
|
@limit = nil
|
|
17
17
|
@offset = nil
|
|
18
|
+
@comment = nil
|
|
18
19
|
@key = nil
|
|
19
20
|
end
|
|
20
21
|
|
|
@@ -25,7 +26,7 @@ module Arel # :nodoc: all
|
|
|
25
26
|
end
|
|
26
27
|
|
|
27
28
|
def hash
|
|
28
|
-
[@relation, @wheres, @values, @orders, @limit, @offset, @key].hash
|
|
29
|
+
[@relation, @wheres, @values, @orders, @limit, @offset, @comment, @key].hash
|
|
29
30
|
end
|
|
30
31
|
|
|
31
32
|
def eql?(other)
|
|
@@ -38,6 +39,7 @@ module Arel # :nodoc: all
|
|
|
38
39
|
self.orders == other.orders &&
|
|
39
40
|
self.limit == other.limit &&
|
|
40
41
|
self.offset == other.offset &&
|
|
42
|
+
self.comment == other.comment &&
|
|
41
43
|
self.key == other.key
|
|
42
44
|
end
|
|
43
45
|
alias :== :eql?
|
data/lib/arel/nodes.rb
CHANGED
|
@@ -41,12 +41,10 @@ require "arel/nodes/matches"
|
|
|
41
41
|
require "arel/nodes/regexp"
|
|
42
42
|
require "arel/nodes/cte"
|
|
43
43
|
|
|
44
|
-
# nary
|
|
45
|
-
require "arel/nodes/
|
|
44
|
+
# nary (And and Or)
|
|
45
|
+
require "arel/nodes/nary"
|
|
46
46
|
|
|
47
47
|
# function
|
|
48
|
-
# FIXME: Function + Alias can be rewritten as a Function and Alias node.
|
|
49
|
-
# We should make Function a Unary node and deprecate the use of "aliaz"
|
|
50
48
|
require "arel/nodes/function"
|
|
51
49
|
require "arel/nodes/count"
|
|
52
50
|
require "arel/nodes/extract"
|
data/lib/arel/predications.rb
CHANGED
|
@@ -232,7 +232,7 @@ module Arel # :nodoc: all
|
|
|
232
232
|
def grouping_any(method_id, others, *extras)
|
|
233
233
|
nodes = others.map { |expr| send(method_id, expr, *extras) }
|
|
234
234
|
Nodes::Grouping.new nodes.inject { |memo, node|
|
|
235
|
-
Nodes::Or.new(memo, node)
|
|
235
|
+
Nodes::Or.new([memo, node])
|
|
236
236
|
}
|
|
237
237
|
end
|
|
238
238
|
|
data/lib/arel/select_manager.rb
CHANGED
|
@@ -46,7 +46,7 @@ module Arel # :nodoc: all
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
def as(other)
|
|
49
|
-
create_table_alias grouping(@ast), Nodes::SqlLiteral.new(other)
|
|
49
|
+
create_table_alias grouping(@ast), Nodes::SqlLiteral.new(other, retryable: true)
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
def lock(locking = Arel.sql("FOR UPDATE"))
|
|
@@ -74,8 +74,13 @@ module Arel # :nodoc: all
|
|
|
74
74
|
def group(*columns)
|
|
75
75
|
columns.each do |column|
|
|
76
76
|
# FIXME: backwards compat
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
case column
|
|
78
|
+
when Nodes::SqlLiteral
|
|
79
|
+
when String
|
|
80
|
+
column = Nodes::SqlLiteral.new(column)
|
|
81
|
+
when Symbol
|
|
82
|
+
column = Nodes::SqlLiteral.new(column.name)
|
|
83
|
+
end
|
|
79
84
|
|
|
80
85
|
@ctx.groups.push Nodes::Group.new column
|
|
81
86
|
end
|
|
@@ -250,8 +255,12 @@ module Arel # :nodoc: all
|
|
|
250
255
|
end
|
|
251
256
|
|
|
252
257
|
def comment(*values)
|
|
253
|
-
|
|
254
|
-
|
|
258
|
+
if values.any?
|
|
259
|
+
@ctx.comment = Nodes::Comment.new(values)
|
|
260
|
+
self
|
|
261
|
+
else
|
|
262
|
+
@ctx.comment
|
|
263
|
+
end
|
|
255
264
|
end
|
|
256
265
|
|
|
257
266
|
private
|
data/lib/arel/table.rb
CHANGED
|
@@ -12,13 +12,9 @@ module Arel # :nodoc: all
|
|
|
12
12
|
attr_reader :table_alias
|
|
13
13
|
|
|
14
14
|
def initialize(name, as: nil, klass: nil, type_caster: klass&.type_caster)
|
|
15
|
-
|
|
16
|
-
case name
|
|
17
|
-
when Symbol then name.to_s
|
|
18
|
-
else
|
|
19
|
-
name
|
|
20
|
-
end
|
|
15
|
+
name = name.name if name.is_a?(Symbol)
|
|
21
16
|
|
|
17
|
+
@name = name
|
|
22
18
|
@klass = klass
|
|
23
19
|
@type_caster = type_caster
|
|
24
20
|
|
|
@@ -84,7 +80,7 @@ module Arel # :nodoc: all
|
|
|
84
80
|
end
|
|
85
81
|
|
|
86
82
|
def [](name, table = self)
|
|
87
|
-
name = name.
|
|
83
|
+
name = name.name if name.is_a?(Symbol)
|
|
88
84
|
name = @klass.attribute_aliases[name] || name if @klass
|
|
89
85
|
Attribute.new(table, name)
|
|
90
86
|
end
|
data/lib/arel/tree_manager.rb
CHANGED
|
@@ -52,8 +52,9 @@ module Arel # :nodoc: all
|
|
|
52
52
|
|
|
53
53
|
def to_sql(engine = Table.engine)
|
|
54
54
|
collector = Arel::Collectors::SQLString.new
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
engine.with_connection do |connection|
|
|
56
|
+
connection.visitor.accept(@ast, collector).value
|
|
57
|
+
end
|
|
57
58
|
end
|
|
58
59
|
|
|
59
60
|
def initialize_copy(other)
|
data/lib/arel/update_manager.rb
CHANGED
|
@@ -16,7 +16,8 @@ module Arel # :nodoc: all
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def set(values)
|
|
19
|
-
|
|
19
|
+
case values
|
|
20
|
+
when String, Nodes::BoundSqlLiteral
|
|
20
21
|
@ast.values = [values]
|
|
21
22
|
else
|
|
22
23
|
@ast.values = values.map { |column, value|
|
|
@@ -44,5 +45,10 @@ module Arel # :nodoc: all
|
|
|
44
45
|
@ast.havings << expr
|
|
45
46
|
self
|
|
46
47
|
end
|
|
48
|
+
|
|
49
|
+
def comment(value)
|
|
50
|
+
@ast.comment = value
|
|
51
|
+
self
|
|
52
|
+
end
|
|
47
53
|
end
|
|
48
54
|
end
|
data/lib/arel/visitors/dot.rb
CHANGED
|
@@ -34,7 +34,6 @@ module Arel # :nodoc: all
|
|
|
34
34
|
def visit_Arel_Nodes_Function(o)
|
|
35
35
|
visit_edge o, "expressions"
|
|
36
36
|
visit_edge o, "distinct"
|
|
37
|
-
visit_edge o, "alias"
|
|
38
37
|
end
|
|
39
38
|
|
|
40
39
|
def visit_Arel_Nodes_Unary(o)
|
|
@@ -108,14 +107,12 @@ module Arel # :nodoc: all
|
|
|
108
107
|
|
|
109
108
|
def visit_Arel_Nodes_Extract(o)
|
|
110
109
|
visit_edge o, "expressions"
|
|
111
|
-
visit_edge o, "alias"
|
|
112
110
|
end
|
|
113
111
|
|
|
114
112
|
def visit_Arel_Nodes_NamedFunction(o)
|
|
115
113
|
visit_edge o, "name"
|
|
116
114
|
visit_edge o, "expressions"
|
|
117
115
|
visit_edge o, "distinct"
|
|
118
|
-
visit_edge o, "alias"
|
|
119
116
|
end
|
|
120
117
|
|
|
121
118
|
def visit_Arel_Nodes_InsertStatement(o)
|
|
@@ -153,6 +150,7 @@ module Arel # :nodoc: all
|
|
|
153
150
|
visit_edge o, "orders"
|
|
154
151
|
visit_edge o, "limit"
|
|
155
152
|
visit_edge o, "offset"
|
|
153
|
+
visit_edge o, "comment"
|
|
156
154
|
visit_edge o, "key"
|
|
157
155
|
end
|
|
158
156
|
|
|
@@ -162,6 +160,7 @@ module Arel # :nodoc: all
|
|
|
162
160
|
visit_edge o, "orders"
|
|
163
161
|
visit_edge o, "limit"
|
|
164
162
|
visit_edge o, "offset"
|
|
163
|
+
visit_edge o, "comment"
|
|
165
164
|
visit_edge o, "key"
|
|
166
165
|
end
|
|
167
166
|
|
|
@@ -191,6 +190,7 @@ module Arel # :nodoc: all
|
|
|
191
190
|
end
|
|
192
191
|
end
|
|
193
192
|
alias :visit_Arel_Nodes_And :visit__children
|
|
193
|
+
alias :visit_Arel_Nodes_Or :visit__children
|
|
194
194
|
alias :visit_Arel_Nodes_With :visit__children
|
|
195
195
|
|
|
196
196
|
def visit_String(o)
|
data/lib/arel/visitors/mysql.rb
CHANGED
|
@@ -27,7 +27,7 @@ module Arel # :nodoc: all
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def visit_Arel_Nodes_SelectCore(o, collector)
|
|
30
|
-
o.froms ||= Arel.sql("DUAL")
|
|
30
|
+
o.froms ||= Arel.sql("DUAL", retryable: true)
|
|
31
31
|
super
|
|
32
32
|
end
|
|
33
33
|
|
|
@@ -59,9 +59,14 @@ module Arel # :nodoc: all
|
|
|
59
59
|
infix_value o, collector, " NOT REGEXP "
|
|
60
60
|
end
|
|
61
61
|
|
|
62
|
-
# no-op
|
|
63
62
|
def visit_Arel_Nodes_NullsFirst(o, collector)
|
|
64
|
-
visit
|
|
63
|
+
visit(o.expr.expr, collector) << " IS NOT NULL, "
|
|
64
|
+
visit(o.expr, collector)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def visit_Arel_Nodes_NullsLast(o, collector)
|
|
68
|
+
visit(o.expr.expr, collector) << " IS NULL, "
|
|
69
|
+
visit(o.expr, collector)
|
|
65
70
|
end
|
|
66
71
|
|
|
67
72
|
def visit_Arel_Nodes_Cte(o, collector)
|
|
@@ -98,7 +103,7 @@ module Arel # :nodoc: all
|
|
|
98
103
|
Nodes::SelectStatement.new.tap do |stmt|
|
|
99
104
|
core = stmt.cores.last
|
|
100
105
|
core.froms = Nodes::Grouping.new(subselect).as("__active_record_temp")
|
|
101
|
-
core.projections = [Arel.sql(quote_column_name(key.name))]
|
|
106
|
+
core.projections = [Arel.sql(quote_column_name(key.name), retryable: true)]
|
|
102
107
|
end
|
|
103
108
|
end
|
|
104
109
|
end
|
|
@@ -4,6 +4,55 @@ module Arel # :nodoc: all
|
|
|
4
4
|
module Visitors
|
|
5
5
|
class PostgreSQL < Arel::Visitors::ToSql
|
|
6
6
|
private
|
|
7
|
+
def visit_Arel_Nodes_UpdateStatement(o, collector)
|
|
8
|
+
collector.retryable = false
|
|
9
|
+
o = prepare_update_statement(o)
|
|
10
|
+
|
|
11
|
+
collector << "UPDATE "
|
|
12
|
+
|
|
13
|
+
# UPDATE with JOIN is in the form of:
|
|
14
|
+
#
|
|
15
|
+
# UPDATE t1 AS __active_record_update_alias
|
|
16
|
+
# SET ..
|
|
17
|
+
# FROM t1 JOIN t2 ON t2.join_id = t1.join_id ..
|
|
18
|
+
# WHERE t1.id = __active_record_update_alias.id AND ..
|
|
19
|
+
if has_join_sources?(o)
|
|
20
|
+
collector = visit o.relation.left, collector
|
|
21
|
+
collect_nodes_for o.values, collector, " SET "
|
|
22
|
+
collector << " FROM "
|
|
23
|
+
collector = inject_join o.relation.right, collector, " "
|
|
24
|
+
else
|
|
25
|
+
collector = visit o.relation, collector
|
|
26
|
+
collect_nodes_for o.values, collector, " SET "
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
collect_nodes_for o.wheres, collector, " WHERE ", " AND "
|
|
30
|
+
collect_nodes_for o.orders, collector, " ORDER BY "
|
|
31
|
+
maybe_visit o.limit, collector
|
|
32
|
+
maybe_visit o.comment, collector
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# In the simple case, PostgreSQL allows us to place FROM or JOINs directly into the UPDATE
|
|
36
|
+
# query. However, this does not allow for LIMIT, OFFSET and ORDER. To support
|
|
37
|
+
# these, we must use a subquery.
|
|
38
|
+
def prepare_update_statement(o)
|
|
39
|
+
if o.key && has_join_sources?(o) && !has_group_by_and_having?(o) && !has_limit_or_offset_or_orders?(o)
|
|
40
|
+
# Join clauses cannot reference the target table, so alias the
|
|
41
|
+
# updated table, place the entire relation in the FROM clause, and
|
|
42
|
+
# add a self-join (which requires the primary key)
|
|
43
|
+
stmt = o.clone
|
|
44
|
+
stmt.relation, stmt.wheres = o.relation.clone, o.wheres.clone
|
|
45
|
+
stmt.relation.right = [stmt.relation.left, *stmt.relation.right]
|
|
46
|
+
stmt.relation.left = stmt.relation.left.alias("__active_record_update_alias")
|
|
47
|
+
Array.wrap(o.key).each do |key|
|
|
48
|
+
stmt.wheres << key.eq(stmt.relation.left[key.name])
|
|
49
|
+
end
|
|
50
|
+
stmt
|
|
51
|
+
else
|
|
52
|
+
super
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
7
56
|
def visit_Arel_Nodes_Matches(o, collector)
|
|
8
57
|
op = o.case_sensitive ? " LIKE " : " ILIKE "
|
|
9
58
|
collector = infix_value o, collector, op
|
|
@@ -63,7 +112,13 @@ module Arel # :nodoc: all
|
|
|
63
112
|
|
|
64
113
|
def visit_Arel_Nodes_Lateral(o, collector)
|
|
65
114
|
collector << "LATERAL "
|
|
66
|
-
grouping_parentheses o, collector
|
|
115
|
+
grouping_parentheses o.expr, collector
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def visit_Arel_Nodes_InnerJoin(o, collector)
|
|
119
|
+
return super if o.right
|
|
120
|
+
collector << "CROSS JOIN "
|
|
121
|
+
visit o.left, collector
|
|
67
122
|
end
|
|
68
123
|
|
|
69
124
|
def visit_Arel_Nodes_IsNotDistinctFrom(o, collector)
|
|
@@ -83,17 +138,6 @@ module Arel # :nodoc: all
|
|
|
83
138
|
|
|
84
139
|
def bind_block; BIND_BLOCK; end
|
|
85
140
|
|
|
86
|
-
# Used by Lateral visitor to enclose select queries in parentheses
|
|
87
|
-
def grouping_parentheses(o, collector)
|
|
88
|
-
if o.expr.is_a? Nodes::SelectStatement
|
|
89
|
-
collector << "("
|
|
90
|
-
visit o.expr, collector
|
|
91
|
-
collector << ")"
|
|
92
|
-
else
|
|
93
|
-
visit o.expr, collector
|
|
94
|
-
end
|
|
95
|
-
end
|
|
96
|
-
|
|
97
141
|
# Utilized by GroupingSet, Cube & RollUp visitors to
|
|
98
142
|
# handle grouping aggregation semantics
|
|
99
143
|
def grouping_array_or_grouping_element(o, collector)
|
data/lib/arel/visitors/sqlite.rb
CHANGED
|
@@ -4,6 +4,61 @@ module Arel # :nodoc: all
|
|
|
4
4
|
module Visitors
|
|
5
5
|
class SQLite < Arel::Visitors::ToSql
|
|
6
6
|
private
|
|
7
|
+
def visit_Arel_Nodes_UpdateStatement(o, collector)
|
|
8
|
+
collector.retryable = false
|
|
9
|
+
o = prepare_update_statement(o)
|
|
10
|
+
|
|
11
|
+
collector << "UPDATE "
|
|
12
|
+
|
|
13
|
+
# UPDATE with JOIN is in the form of:
|
|
14
|
+
#
|
|
15
|
+
# UPDATE t1 AS __active_record_update_alias
|
|
16
|
+
# SET ..
|
|
17
|
+
# FROM t1 JOIN t2 ON t2.join_id = t1.join_id ..
|
|
18
|
+
# WHERE t1.id = __active_record_update_alias.id AND ..
|
|
19
|
+
if has_join_sources?(o)
|
|
20
|
+
collector = visit o.relation.left, collector
|
|
21
|
+
collect_nodes_for o.values, collector, " SET "
|
|
22
|
+
collector << " FROM "
|
|
23
|
+
collector = inject_join o.relation.right, collector, " "
|
|
24
|
+
else
|
|
25
|
+
collector = visit o.relation, collector
|
|
26
|
+
collect_nodes_for o.values, collector, " SET "
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
collect_nodes_for o.wheres, collector, " WHERE ", " AND "
|
|
30
|
+
collect_nodes_for o.orders, collector, " ORDER BY "
|
|
31
|
+
maybe_visit o.limit, collector
|
|
32
|
+
maybe_visit o.comment, collector
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def prepare_update_statement(o)
|
|
36
|
+
# Sqlite need to be built with the SQLITE_ENABLE_UPDATE_DELETE_LIMIT compile-time option
|
|
37
|
+
# to support LIMIT/OFFSET/ORDER in UPDATE and DELETE statements.
|
|
38
|
+
if o.key && has_join_sources?(o) && !has_group_by_and_having?(o) && !has_limit_or_offset_or_orders?(o)
|
|
39
|
+
# Join clauses cannot reference the target table, so alias the
|
|
40
|
+
# updated table, place the entire relation in the FROM clause, and
|
|
41
|
+
# add a self-join (which requires the primary key)
|
|
42
|
+
stmt = o.clone
|
|
43
|
+
stmt.relation, stmt.wheres = o.relation.clone, o.wheres.clone
|
|
44
|
+
stmt.relation.right = [stmt.relation.left, *stmt.relation.right]
|
|
45
|
+
stmt.relation.left = stmt.relation.left.alias("__active_record_update_alias")
|
|
46
|
+
Array.wrap(o.key).each do |key|
|
|
47
|
+
stmt.wheres << key.eq(stmt.relation.left[key.name])
|
|
48
|
+
end
|
|
49
|
+
stmt
|
|
50
|
+
else
|
|
51
|
+
super
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def visit_Arel_Nodes_TableAlias(o, collector)
|
|
56
|
+
# "AS" is not optional in "{UPDATE | DELETE} table AS alias ..."
|
|
57
|
+
collector = visit o.relation, collector
|
|
58
|
+
collector << " AS "
|
|
59
|
+
collector << quote_table_name(o.name)
|
|
60
|
+
end
|
|
61
|
+
|
|
7
62
|
# Locks are not supported in SQLite
|
|
8
63
|
def visit_Arel_Nodes_Lock(o, collector)
|
|
9
64
|
collector
|
|
@@ -14,14 +69,6 @@ module Arel # :nodoc: all
|
|
|
14
69
|
super
|
|
15
70
|
end
|
|
16
71
|
|
|
17
|
-
def visit_Arel_Nodes_True(o, collector)
|
|
18
|
-
collector << "1"
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
def visit_Arel_Nodes_False(o, collector)
|
|
22
|
-
collector << "0"
|
|
23
|
-
end
|
|
24
|
-
|
|
25
72
|
def visit_Arel_Nodes_IsNotDistinctFrom(o, collector)
|
|
26
73
|
collector = visit o.left, collector
|
|
27
74
|
collector << " IS "
|
|
@@ -33,6 +80,31 @@ module Arel # :nodoc: all
|
|
|
33
80
|
collector << " IS NOT "
|
|
34
81
|
visit o.right, collector
|
|
35
82
|
end
|
|
83
|
+
|
|
84
|
+
# Queries used in UNION should not be wrapped by parentheses,
|
|
85
|
+
# because it is an invalid syntax in SQLite.
|
|
86
|
+
def infix_value_with_paren(o, collector, value, suppress_parens = false)
|
|
87
|
+
collector << "( " unless suppress_parens
|
|
88
|
+
|
|
89
|
+
left = o.left.is_a?(Nodes::Grouping) ? o.left.expr : o.left
|
|
90
|
+
collector = if left.class == o.class
|
|
91
|
+
infix_value_with_paren(left, collector, value, true)
|
|
92
|
+
else
|
|
93
|
+
grouping_parentheses left, collector, false
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
collector << value
|
|
97
|
+
|
|
98
|
+
right = o.right.is_a?(Nodes::Grouping) ? o.right.expr : o.right
|
|
99
|
+
collector = if right.class == o.class
|
|
100
|
+
infix_value_with_paren(right, collector, value, true)
|
|
101
|
+
else
|
|
102
|
+
grouping_parentheses right, collector, false
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
collector << " )" unless suppress_parens
|
|
106
|
+
collector
|
|
107
|
+
end
|
|
36
108
|
end
|
|
37
109
|
end
|
|
38
110
|
end
|