activerecord 6.1.3.2 → 7.0.0.alpha2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +734 -1058
- data/MIT-LICENSE +1 -1
- data/README.rdoc +1 -1
- data/lib/active_record/aggregations.rb +1 -1
- data/lib/active_record/association_relation.rb +0 -10
- data/lib/active_record/associations/association.rb +35 -7
- data/lib/active_record/associations/association_scope.rb +1 -3
- data/lib/active_record/associations/belongs_to_association.rb +16 -6
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +10 -2
- data/lib/active_record/associations/builder/association.rb +8 -2
- data/lib/active_record/associations/builder/belongs_to.rb +19 -6
- data/lib/active_record/associations/builder/collection_association.rb +1 -1
- data/lib/active_record/associations/builder/has_many.rb +3 -2
- data/lib/active_record/associations/builder/has_one.rb +2 -1
- data/lib/active_record/associations/builder/singular_association.rb +2 -2
- data/lib/active_record/associations/collection_association.rb +24 -25
- data/lib/active_record/associations/collection_proxy.rb +8 -3
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/has_many_association.rb +1 -1
- data/lib/active_record/associations/has_many_through_association.rb +2 -1
- data/lib/active_record/associations/has_one_association.rb +10 -7
- data/lib/active_record/associations/has_one_through_association.rb +1 -1
- data/lib/active_record/associations/preloader/association.rb +161 -49
- data/lib/active_record/associations/preloader/batch.rb +51 -0
- data/lib/active_record/associations/preloader/branch.rb +147 -0
- data/lib/active_record/associations/preloader/through_association.rb +37 -11
- data/lib/active_record/associations/preloader.rb +46 -110
- data/lib/active_record/associations/singular_association.rb +8 -2
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +76 -81
- data/lib/active_record/asynchronous_queries_tracker.rb +57 -0
- data/lib/active_record/attribute_assignment.rb +1 -1
- data/lib/active_record/attribute_methods/before_type_cast.rb +7 -2
- data/lib/active_record/attribute_methods/dirty.rb +41 -16
- data/lib/active_record/attribute_methods/primary_key.rb +2 -2
- data/lib/active_record/attribute_methods/query.rb +2 -2
- data/lib/active_record/attribute_methods/read.rb +7 -5
- data/lib/active_record/attribute_methods/serialization.rb +66 -12
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +4 -3
- data/lib/active_record/attribute_methods/write.rb +7 -10
- data/lib/active_record/attribute_methods.rb +6 -9
- data/lib/active_record/attributes.rb +24 -35
- data/lib/active_record/autosave_association.rb +3 -18
- data/lib/active_record/base.rb +19 -1
- data/lib/active_record/callbacks.rb +2 -2
- data/lib/active_record/coders/yaml_column.rb +11 -1
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +312 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +209 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +76 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +31 -558
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +45 -21
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +24 -12
- data/lib/active_record/connection_adapters/abstract/quoting.rb +14 -7
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +5 -18
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +30 -9
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +60 -16
- data/lib/active_record/connection_adapters/abstract/transaction.rb +17 -6
- data/lib/active_record/connection_adapters/abstract_adapter.rb +115 -69
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +96 -81
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +6 -2
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +33 -21
- data/lib/active_record/connection_adapters/mysql/quoting.rb +16 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +3 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +12 -6
- data/lib/active_record/connection_adapters/pool_config.rb +1 -3
- data/lib/active_record/connection_adapters/pool_manager.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +19 -12
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +8 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +5 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +53 -14
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +28 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +18 -6
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +6 -6
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +32 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +12 -12
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +157 -100
- data/lib/active_record/connection_adapters/schema_cache.rb +35 -4
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +0 -2
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +23 -17
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +4 -2
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +61 -30
- data/lib/active_record/connection_adapters.rb +8 -5
- data/lib/active_record/connection_handling.rb +20 -38
- data/lib/active_record/core.rb +129 -117
- data/lib/active_record/database_configurations/database_config.rb +12 -0
- data/lib/active_record/database_configurations/hash_config.rb +27 -1
- data/lib/active_record/database_configurations/url_config.rb +2 -2
- data/lib/active_record/database_configurations.rb +18 -9
- data/lib/active_record/delegated_type.rb +33 -11
- data/lib/active_record/destroy_association_async_job.rb +1 -1
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +1 -1
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +98 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +44 -0
- data/lib/active_record/encryption/configurable.rb +61 -0
- data/lib/active_record/encryption/context.rb +35 -0
- data/lib/active_record/encryption/contexts.rb +72 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +12 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +208 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +140 -0
- data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
- data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
- data/lib/active_record/encryption/encryptor.rb +155 -0
- data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
- data/lib/active_record/encryption/errors.rb +15 -0
- data/lib/active_record/encryption/extended_deterministic_queries.rb +160 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +29 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +42 -0
- data/lib/active_record/encryption/key_provider.rb +46 -0
- data/lib/active_record/encryption/message.rb +33 -0
- data/lib/active_record/encryption/message_serializer.rb +80 -0
- data/lib/active_record/encryption/null_encryptor.rb +21 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +24 -0
- data/lib/active_record/encryption/scheme.rb +99 -0
- data/lib/active_record/encryption.rb +55 -0
- data/lib/active_record/enum.rb +44 -46
- data/lib/active_record/errors.rb +66 -3
- data/lib/active_record/fixture_set/file.rb +15 -1
- data/lib/active_record/fixture_set/table_row.rb +40 -5
- data/lib/active_record/fixture_set/table_rows.rb +4 -4
- data/lib/active_record/fixtures.rb +16 -11
- data/lib/active_record/future_result.rb +139 -0
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +55 -17
- data/lib/active_record/insert_all.rb +39 -6
- data/lib/active_record/integration.rb +1 -1
- data/lib/active_record/internal_metadata.rb +3 -5
- data/lib/active_record/legacy_yaml_adapter.rb +1 -1
- data/lib/active_record/locking/optimistic.rb +10 -9
- data/lib/active_record/log_subscriber.rb +6 -2
- data/lib/active_record/middleware/database_selector/resolver.rb +6 -10
- data/lib/active_record/middleware/database_selector.rb +8 -3
- data/lib/active_record/migration/command_recorder.rb +4 -4
- data/lib/active_record/migration/compatibility.rb +83 -1
- data/lib/active_record/migration/join_table.rb +1 -1
- data/lib/active_record/migration.rb +109 -79
- data/lib/active_record/model_schema.rb +46 -32
- data/lib/active_record/nested_attributes.rb +3 -3
- data/lib/active_record/no_touching.rb +2 -2
- data/lib/active_record/null_relation.rb +2 -6
- data/lib/active_record/persistence.rb +134 -45
- data/lib/active_record/query_cache.rb +2 -2
- data/lib/active_record/query_logs.rb +203 -0
- data/lib/active_record/querying.rb +15 -5
- data/lib/active_record/railtie.rb +117 -17
- data/lib/active_record/railties/controller_runtime.rb +1 -1
- data/lib/active_record/railties/databases.rake +83 -58
- data/lib/active_record/readonly_attributes.rb +11 -0
- data/lib/active_record/reflection.rb +45 -44
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +3 -3
- data/lib/active_record/relation/calculations.rb +42 -25
- data/lib/active_record/relation/delegation.rb +6 -6
- data/lib/active_record/relation/finder_methods.rb +32 -23
- data/lib/active_record/relation/merger.rb +20 -13
- data/lib/active_record/relation/predicate_builder.rb +1 -6
- data/lib/active_record/relation/query_attribute.rb +5 -11
- data/lib/active_record/relation/query_methods.rb +233 -50
- data/lib/active_record/relation/record_fetch_warning.rb +2 -2
- data/lib/active_record/relation/spawn_methods.rb +2 -2
- data/lib/active_record/relation/where_clause.rb +22 -15
- data/lib/active_record/relation.rb +170 -87
- data/lib/active_record/result.rb +17 -2
- data/lib/active_record/runtime_registry.rb +2 -4
- data/lib/active_record/sanitization.rb +11 -7
- data/lib/active_record/schema_dumper.rb +3 -3
- data/lib/active_record/schema_migration.rb +0 -4
- data/lib/active_record/scoping/default.rb +62 -15
- data/lib/active_record/scoping/named.rb +3 -11
- data/lib/active_record/scoping.rb +40 -22
- data/lib/active_record/serialization.rb +1 -1
- data/lib/active_record/signed_id.rb +1 -1
- data/lib/active_record/statement_cache.rb +2 -2
- data/lib/active_record/tasks/database_tasks.rb +107 -23
- data/lib/active_record/tasks/mysql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/postgresql_database_tasks.rb +14 -11
- data/lib/active_record/test_databases.rb +1 -1
- data/lib/active_record/test_fixtures.rb +45 -4
- data/lib/active_record/timestamp.rb +3 -4
- data/lib/active_record/transactions.rb +9 -14
- data/lib/active_record/translation.rb +2 -2
- data/lib/active_record/type/adapter_specific_registry.rb +32 -7
- data/lib/active_record/type/hash_lookup_type_map.rb +34 -1
- data/lib/active_record/type/internal/timezone.rb +2 -2
- data/lib/active_record/type/serialized.rb +1 -1
- data/lib/active_record/type/type_map.rb +17 -20
- data/lib/active_record/type.rb +1 -2
- data/lib/active_record/validations/associated.rb +1 -1
- data/lib/active_record/validations/numericality.rb +1 -1
- data/lib/active_record.rb +170 -2
- data/lib/arel/attributes/attribute.rb +0 -8
- data/lib/arel/collectors/bind.rb +2 -2
- data/lib/arel/collectors/composite.rb +3 -3
- data/lib/arel/collectors/sql_string.rb +1 -1
- data/lib/arel/collectors/substitute_binds.rb +1 -1
- data/lib/arel/crud.rb +18 -22
- data/lib/arel/delete_manager.rb +2 -4
- data/lib/arel/insert_manager.rb +2 -3
- data/lib/arel/nodes/casted.rb +1 -1
- data/lib/arel/nodes/delete_statement.rb +8 -13
- data/lib/arel/nodes/homogeneous_in.rb +4 -0
- data/lib/arel/nodes/insert_statement.rb +2 -2
- data/lib/arel/nodes/select_core.rb +2 -2
- data/lib/arel/nodes/select_statement.rb +2 -2
- data/lib/arel/nodes/update_statement.rb +3 -2
- data/lib/arel/predications.rb +3 -3
- data/lib/arel/select_manager.rb +10 -4
- data/lib/arel/table.rb +0 -1
- data/lib/arel/tree_manager.rb +0 -12
- data/lib/arel/update_manager.rb +2 -4
- data/lib/arel/visitors/dot.rb +80 -90
- data/lib/arel/visitors/mysql.rb +6 -1
- data/lib/arel/visitors/postgresql.rb +0 -10
- data/lib/arel/visitors/to_sql.rb +44 -3
- data/lib/arel.rb +1 -1
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +2 -2
- metadata +55 -16
data/lib/active_record/type.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module ActiveRecord
|
4
4
|
module Validations
|
5
|
-
class AssociatedValidator < ActiveModel::EachValidator
|
5
|
+
class AssociatedValidator < ActiveModel::EachValidator # :nodoc:
|
6
6
|
def validate_each(record, attribute, value)
|
7
7
|
if Array(value).reject { |r| valid_object?(r) }.any?
|
8
8
|
record.errors.add(attribute, :invalid, **options.merge(value: value))
|
@@ -4,7 +4,7 @@ module ActiveRecord
|
|
4
4
|
module Validations
|
5
5
|
class NumericalityValidator < ActiveModel::Validations::NumericalityValidator # :nodoc:
|
6
6
|
def validate_each(record, attribute, value, precision: nil, scale: nil)
|
7
|
-
precision = [column_precision_for(record, attribute) ||
|
7
|
+
precision = [column_precision_for(record, attribute) || Float::DIG, Float::DIG].min
|
8
8
|
scale = column_scale_for(record, attribute)
|
9
9
|
super(record, attribute, value, precision: precision, scale: scale)
|
10
10
|
end
|
data/lib/active_record.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
#--
|
4
|
-
# Copyright (c) 2004-
|
4
|
+
# Copyright (c) 2004-2021 David Heinemeier Hansson
|
5
5
|
#
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
7
7
|
# a copy of this software and associated documentation files (the
|
@@ -43,6 +43,7 @@ module ActiveRecord
|
|
43
43
|
autoload :CounterCache
|
44
44
|
autoload :DynamicMatchers
|
45
45
|
autoload :DelegatedType
|
46
|
+
autoload :Encryption
|
46
47
|
autoload :Enum
|
47
48
|
autoload :InternalMetadata
|
48
49
|
autoload :Explain
|
@@ -57,6 +58,7 @@ module ActiveRecord
|
|
57
58
|
autoload :Persistence
|
58
59
|
autoload :QueryCache
|
59
60
|
autoload :Querying
|
61
|
+
autoload :QueryLogs
|
60
62
|
autoload :ReadonlyAttributes
|
61
63
|
autoload :RecordInvalid, "active_record/validations"
|
62
64
|
autoload :Reflection
|
@@ -67,7 +69,6 @@ module ActiveRecord
|
|
67
69
|
autoload :SchemaMigration
|
68
70
|
autoload :Scoping
|
69
71
|
autoload :Serialization
|
70
|
-
autoload :StatementCache
|
71
72
|
autoload :Store
|
72
73
|
autoload :SignedId
|
73
74
|
autoload :Suppressor
|
@@ -79,6 +80,7 @@ module ActiveRecord
|
|
79
80
|
autoload :DestroyAssociationAsyncJob
|
80
81
|
|
81
82
|
eager_autoload do
|
83
|
+
autoload :StatementCache
|
82
84
|
autoload :ConnectionAdapters
|
83
85
|
|
84
86
|
autoload :Aggregations
|
@@ -86,11 +88,13 @@ module ActiveRecord
|
|
86
88
|
autoload :AttributeAssignment
|
87
89
|
autoload :AttributeMethods
|
88
90
|
autoload :AutosaveAssociation
|
91
|
+
autoload :AsynchronousQueriesTracker
|
89
92
|
|
90
93
|
autoload :LegacyYamlAdapter
|
91
94
|
|
92
95
|
autoload :Relation
|
93
96
|
autoload :AssociationRelation
|
97
|
+
autoload :DisableJoinsAssociationRelation
|
94
98
|
autoload :NullRelation
|
95
99
|
|
96
100
|
autoload_under "relation" do
|
@@ -104,6 +108,7 @@ module ActiveRecord
|
|
104
108
|
end
|
105
109
|
|
106
110
|
autoload :Result
|
111
|
+
autoload :FutureResult
|
107
112
|
autoload :TableMetadata
|
108
113
|
autoload :Type
|
109
114
|
end
|
@@ -165,6 +170,168 @@ module ActiveRecord
|
|
165
170
|
autoload :TestDatabases, "active_record/test_databases"
|
166
171
|
autoload :TestFixtures, "active_record/fixtures"
|
167
172
|
|
173
|
+
# A list of tables or regex's to match tables to ignore when
|
174
|
+
# dumping the schema cache. For example if this is set to +[/^_/]+
|
175
|
+
# the schema cache will not dump tables named with an underscore.
|
176
|
+
singleton_class.attr_accessor :schema_cache_ignored_tables
|
177
|
+
self.schema_cache_ignored_tables = []
|
178
|
+
|
179
|
+
singleton_class.attr_accessor :legacy_connection_handling
|
180
|
+
self.legacy_connection_handling = true
|
181
|
+
|
182
|
+
##
|
183
|
+
# :singleton-method:
|
184
|
+
# Determines whether to use Time.utc (using :utc) or Time.local (using :local) when pulling
|
185
|
+
# dates and times from the database. This is set to :utc by default.
|
186
|
+
singleton_class.attr_accessor :default_timezone
|
187
|
+
self.default_timezone = :utc
|
188
|
+
|
189
|
+
singleton_class.attr_accessor :writing_role
|
190
|
+
self.writing_role = :writing
|
191
|
+
|
192
|
+
singleton_class.attr_accessor :reading_role
|
193
|
+
self.reading_role = :reading
|
194
|
+
|
195
|
+
# Sets the async_query_executor for an application. By default the thread pool executor
|
196
|
+
# set to +nil+ which will not run queries in the background. Applications must configure
|
197
|
+
# a thread pool executor to use this feature. Options are:
|
198
|
+
#
|
199
|
+
# * nil - Does not initialize a thread pool executor. Any async calls will be
|
200
|
+
# run in the foreground.
|
201
|
+
# * :global_thread_pool - Initializes a single +Concurrent::ThreadPoolExecutor+
|
202
|
+
# that uses the +async_query_concurrency+ for the +max_threads+ value.
|
203
|
+
# * :multi_thread_pool - Initializes a +Concurrent::ThreadPoolExecutor+ for each
|
204
|
+
# database connection. The initializer values are defined in the configuration hash.
|
205
|
+
singleton_class.attr_accessor :async_query_executor
|
206
|
+
self.async_query_executor = nil
|
207
|
+
|
208
|
+
def self.global_thread_pool_async_query_executor # :nodoc:
|
209
|
+
concurrency = global_executor_concurrency || 4
|
210
|
+
@global_thread_pool_async_query_executor ||= Concurrent::ThreadPoolExecutor.new(
|
211
|
+
min_threads: 0,
|
212
|
+
max_threads: concurrency,
|
213
|
+
max_queue: concurrency * 4,
|
214
|
+
fallback_policy: :caller_runs
|
215
|
+
)
|
216
|
+
end
|
217
|
+
|
218
|
+
# Set the +global_executor_concurrency+. This configuration value can only be used
|
219
|
+
# with the global thread pool async query executor.
|
220
|
+
def self.global_executor_concurrency=(global_executor_concurrency)
|
221
|
+
if self.async_query_executor.nil? || self.async_query_executor == :multi_thread_pool
|
222
|
+
raise ArgumentError, "`global_executor_concurrency` cannot be set when using the executor is nil or set to multi_thead_pool. For multiple thread pools, please set the concurrency in your database configuration."
|
223
|
+
end
|
224
|
+
|
225
|
+
@global_executor_concurrency = global_executor_concurrency
|
226
|
+
end
|
227
|
+
|
228
|
+
def self.global_executor_concurrency # :nodoc:
|
229
|
+
@global_executor_concurrency ||= nil
|
230
|
+
end
|
231
|
+
|
232
|
+
singleton_class.attr_accessor :index_nested_attribute_errors
|
233
|
+
self.index_nested_attribute_errors = false
|
234
|
+
|
235
|
+
##
|
236
|
+
# :singleton-method:
|
237
|
+
#
|
238
|
+
# Specifies if the methods calling database queries should be logged below
|
239
|
+
# their relevant queries. Defaults to false.
|
240
|
+
singleton_class.attr_accessor :verbose_query_logs
|
241
|
+
self.verbose_query_logs = false
|
242
|
+
|
243
|
+
##
|
244
|
+
# :singleton-method:
|
245
|
+
#
|
246
|
+
# Specifies the names of the queues used by background jobs.
|
247
|
+
singleton_class.attr_accessor :queues
|
248
|
+
self.queues = {}
|
249
|
+
|
250
|
+
singleton_class.attr_accessor :maintain_test_schema
|
251
|
+
self.maintain_test_schema = nil
|
252
|
+
|
253
|
+
##
|
254
|
+
# :singleton-method:
|
255
|
+
# Specify a threshold for the size of query result sets. If the number of
|
256
|
+
# records in the set exceeds the threshold, a warning is logged. This can
|
257
|
+
# be used to identify queries which load thousands of records and
|
258
|
+
# potentially cause memory bloat.
|
259
|
+
singleton_class.attr_accessor :warn_on_records_fetched_greater_than
|
260
|
+
self.warn_on_records_fetched_greater_than = false
|
261
|
+
|
262
|
+
singleton_class.attr_accessor :application_record_class
|
263
|
+
self.application_record_class = nil
|
264
|
+
|
265
|
+
##
|
266
|
+
# :singleton-method:
|
267
|
+
# Set the application to log or raise when an association violates strict loading.
|
268
|
+
# Defaults to :raise.
|
269
|
+
singleton_class.attr_accessor :action_on_strict_loading_violation
|
270
|
+
self.action_on_strict_loading_violation = :raise
|
271
|
+
|
272
|
+
##
|
273
|
+
# :singleton-method:
|
274
|
+
# Specifies the format to use when dumping the database schema with Rails'
|
275
|
+
# Rakefile. If :sql, the schema is dumped as (potentially database-
|
276
|
+
# specific) SQL statements. If :ruby, the schema is dumped as an
|
277
|
+
# ActiveRecord::Schema file which can be loaded into any database that
|
278
|
+
# supports migrations. Use :ruby if you want to have different database
|
279
|
+
# adapters for, e.g., your development and test environments.
|
280
|
+
singleton_class.attr_accessor :schema_format
|
281
|
+
self.schema_format = :ruby
|
282
|
+
|
283
|
+
##
|
284
|
+
# :singleton-method:
|
285
|
+
# Specifies if an error should be raised if the query has an order being
|
286
|
+
# ignored when doing batch queries. Useful in applications where the
|
287
|
+
# scope being ignored is error-worthy, rather than a warning.
|
288
|
+
singleton_class.attr_accessor :error_on_ignored_order
|
289
|
+
self.error_on_ignored_order = false
|
290
|
+
|
291
|
+
##
|
292
|
+
# :singleton-method:
|
293
|
+
# Specify whether or not to use timestamps for migration versions
|
294
|
+
singleton_class.attr_accessor :timestamped_migrations
|
295
|
+
self.timestamped_migrations = true
|
296
|
+
|
297
|
+
##
|
298
|
+
# :singleton-method:
|
299
|
+
# Specify whether schema dump should happen at the end of the
|
300
|
+
# bin/rails db:migrate command. This is true by default, which is useful for the
|
301
|
+
# development environment. This should ideally be false in the production
|
302
|
+
# environment where dumping schema is rarely needed.
|
303
|
+
singleton_class.attr_accessor :dump_schema_after_migration
|
304
|
+
self.dump_schema_after_migration = true
|
305
|
+
|
306
|
+
##
|
307
|
+
# :singleton-method:
|
308
|
+
# Specifies which database schemas to dump when calling db:schema:dump.
|
309
|
+
# If the value is :schema_search_path (the default), any schemas listed in
|
310
|
+
# schema_search_path are dumped. Use :all to dump all schemas regardless
|
311
|
+
# of schema_search_path, or a string of comma separated schemas for a
|
312
|
+
# custom list.
|
313
|
+
singleton_class.attr_accessor :dump_schemas
|
314
|
+
self.dump_schemas = :schema_search_path
|
315
|
+
|
316
|
+
##
|
317
|
+
# :singleton-method:
|
318
|
+
# Show a warning when Rails couldn't parse your database.yml
|
319
|
+
# for multiple databases.
|
320
|
+
singleton_class.attr_accessor :suppress_multiple_database_warning
|
321
|
+
self.suppress_multiple_database_warning = false
|
322
|
+
|
323
|
+
##
|
324
|
+
# :singleton-method:
|
325
|
+
# If true, Rails will verify all foreign keys in the database after loading fixtures.
|
326
|
+
# An error will be raised if there are any foreign key violations, indicating incorrectly
|
327
|
+
# written fixtures.
|
328
|
+
# Supported by PostgreSQL and SQLite.
|
329
|
+
singleton_class.attr_accessor :verify_foreign_keys_for_fixtures
|
330
|
+
self.verify_foreign_keys_for_fixtures = false
|
331
|
+
|
332
|
+
singleton_class.attr_accessor :query_transformers
|
333
|
+
self.query_transformers = []
|
334
|
+
|
168
335
|
def self.eager_load!
|
169
336
|
super
|
170
337
|
ActiveRecord::Locking.eager_load!
|
@@ -172,6 +339,7 @@ module ActiveRecord
|
|
172
339
|
ActiveRecord::Associations.eager_load!
|
173
340
|
ActiveRecord::AttributeMethods.eager_load!
|
174
341
|
ActiveRecord::ConnectionAdapters.eager_load!
|
342
|
+
ActiveRecord::Encryption.eager_load!
|
175
343
|
end
|
176
344
|
end
|
177
345
|
|
@@ -27,14 +27,6 @@ module Arel # :nodoc: all
|
|
27
27
|
relation.able_to_type_cast?
|
28
28
|
end
|
29
29
|
end
|
30
|
-
|
31
|
-
class String < Attribute; end
|
32
|
-
class Time < Attribute; end
|
33
|
-
class Boolean < Attribute; end
|
34
|
-
class Decimal < Attribute; end
|
35
|
-
class Float < Attribute; end
|
36
|
-
class Integer < Attribute; end
|
37
|
-
class Undefined < Attribute; end
|
38
30
|
end
|
39
31
|
|
40
32
|
Attribute = Attributes::Attribute
|
data/lib/arel/collectors/bind.rb
CHANGED
@@ -22,9 +22,9 @@ module Arel # :nodoc: all
|
|
22
22
|
self
|
23
23
|
end
|
24
24
|
|
25
|
-
def add_binds(binds, &block)
|
26
|
-
left.add_binds(binds, &block)
|
27
|
-
right.add_binds(binds, &block)
|
25
|
+
def add_binds(binds, proc_for_binds = nil, &block)
|
26
|
+
left.add_binds(binds, proc_for_binds, &block)
|
27
|
+
right.add_binds(binds, proc_for_binds, &block)
|
28
28
|
self
|
29
29
|
end
|
30
30
|
|
data/lib/arel/crud.rb
CHANGED
@@ -4,23 +4,6 @@ module Arel # :nodoc: all
|
|
4
4
|
###
|
5
5
|
# FIXME hopefully we can remove this
|
6
6
|
module Crud
|
7
|
-
def compile_update(values, pk)
|
8
|
-
um = UpdateManager.new
|
9
|
-
|
10
|
-
if Nodes::SqlLiteral === values
|
11
|
-
relation = @ctx.from
|
12
|
-
else
|
13
|
-
relation = values.first.first.relation
|
14
|
-
end
|
15
|
-
um.key = pk
|
16
|
-
um.table relation
|
17
|
-
um.set values
|
18
|
-
um.take @ast.limit.expr if @ast.limit
|
19
|
-
um.order(*@ast.orders)
|
20
|
-
um.wheres = @ctx.wheres
|
21
|
-
um
|
22
|
-
end
|
23
|
-
|
24
7
|
def compile_insert(values)
|
25
8
|
im = create_insert
|
26
9
|
im.insert values
|
@@ -31,11 +14,24 @@ module Arel # :nodoc: all
|
|
31
14
|
InsertManager.new
|
32
15
|
end
|
33
16
|
|
34
|
-
def
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
17
|
+
def compile_update(values, key = nil)
|
18
|
+
um = UpdateManager.new(source)
|
19
|
+
um.set(values)
|
20
|
+
um.take(limit)
|
21
|
+
um.offset(offset)
|
22
|
+
um.order(*orders)
|
23
|
+
um.wheres = constraints
|
24
|
+
um.key = key
|
25
|
+
um
|
26
|
+
end
|
27
|
+
|
28
|
+
def compile_delete(key = nil)
|
29
|
+
dm = DeleteManager.new(source)
|
30
|
+
dm.take(limit)
|
31
|
+
dm.offset(offset)
|
32
|
+
dm.order(*orders)
|
33
|
+
dm.wheres = constraints
|
34
|
+
dm.key = key
|
39
35
|
dm
|
40
36
|
end
|
41
37
|
end
|
data/lib/arel/delete_manager.rb
CHANGED
@@ -4,10 +4,8 @@ module Arel # :nodoc: all
|
|
4
4
|
class DeleteManager < Arel::TreeManager
|
5
5
|
include TreeManager::StatementMethods
|
6
6
|
|
7
|
-
def initialize
|
8
|
-
|
9
|
-
@ast = Nodes::DeleteStatement.new
|
10
|
-
@ctx = @ast
|
7
|
+
def initialize(table = nil)
|
8
|
+
@ast = Nodes::DeleteStatement.new(table)
|
11
9
|
end
|
12
10
|
|
13
11
|
def from(relation)
|
data/lib/arel/insert_manager.rb
CHANGED
data/lib/arel/nodes/casted.rb
CHANGED
@@ -47,7 +47,7 @@ module Arel # :nodoc: all
|
|
47
47
|
|
48
48
|
def self.build_quoted(other, attribute = nil)
|
49
49
|
case other
|
50
|
-
when Arel::Nodes::Node, Arel::Attributes::Attribute, Arel::Table, Arel::
|
50
|
+
when Arel::Nodes::Node, Arel::Attributes::Attribute, Arel::Table, Arel::SelectManager, Arel::Nodes::SqlLiteral, ActiveModel::Attribute
|
51
51
|
other
|
52
52
|
else
|
53
53
|
case attribute
|
@@ -3,17 +3,12 @@
|
|
3
3
|
module Arel # :nodoc: all
|
4
4
|
module Nodes
|
5
5
|
class DeleteStatement < Arel::Nodes::Node
|
6
|
-
attr_accessor :
|
7
|
-
|
8
|
-
alias :relation :left
|
9
|
-
alias :relation= :left=
|
10
|
-
alias :wheres :right
|
11
|
-
alias :wheres= :right=
|
6
|
+
attr_accessor :relation, :wheres, :orders, :limit, :offset, :key
|
12
7
|
|
13
8
|
def initialize(relation = nil, wheres = [])
|
14
9
|
super()
|
15
|
-
@
|
16
|
-
@
|
10
|
+
@relation = relation
|
11
|
+
@wheres = wheres
|
17
12
|
@orders = []
|
18
13
|
@limit = nil
|
19
14
|
@offset = nil
|
@@ -22,18 +17,18 @@ module Arel # :nodoc: all
|
|
22
17
|
|
23
18
|
def initialize_copy(other)
|
24
19
|
super
|
25
|
-
@
|
26
|
-
@
|
20
|
+
@relation = @relation.clone if @relation
|
21
|
+
@wheres = @wheres.clone if @wheres
|
27
22
|
end
|
28
23
|
|
29
24
|
def hash
|
30
|
-
[self.class, @
|
25
|
+
[self.class, @relation, @wheres, @orders, @limit, @offset, @key].hash
|
31
26
|
end
|
32
27
|
|
33
28
|
def eql?(other)
|
34
29
|
self.class == other.class &&
|
35
|
-
self.
|
36
|
-
self.
|
30
|
+
self.relation == other.relation &&
|
31
|
+
self.wheres == other.wheres &&
|
37
32
|
self.orders == other.orders &&
|
38
33
|
self.limit == other.limit &&
|
39
34
|
self.offset == other.offset &&
|