omg-activerecord 8.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +355 -0
- data/MIT-LICENSE +22 -0
- data/README.rdoc +219 -0
- data/examples/performance.rb +185 -0
- data/examples/simple.rb +15 -0
- data/lib/active_record/aggregations.rb +287 -0
- data/lib/active_record/association_relation.rb +50 -0
- data/lib/active_record/associations/alias_tracker.rb +90 -0
- data/lib/active_record/associations/association.rb +417 -0
- data/lib/active_record/associations/association_scope.rb +175 -0
- data/lib/active_record/associations/belongs_to_association.rb +163 -0
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
- data/lib/active_record/associations/builder/association.rb +170 -0
- data/lib/active_record/associations/builder/belongs_to.rb +160 -0
- data/lib/active_record/associations/builder/collection_association.rb +80 -0
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +107 -0
- data/lib/active_record/associations/builder/has_many.rb +23 -0
- data/lib/active_record/associations/builder/has_one.rb +61 -0
- data/lib/active_record/associations/builder/singular_association.rb +48 -0
- data/lib/active_record/associations/collection_association.rb +535 -0
- data/lib/active_record/associations/collection_proxy.rb +1163 -0
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/errors.rb +265 -0
- data/lib/active_record/associations/foreign_association.rb +40 -0
- data/lib/active_record/associations/has_many_association.rb +167 -0
- data/lib/active_record/associations/has_many_through_association.rb +232 -0
- data/lib/active_record/associations/has_one_association.rb +142 -0
- data/lib/active_record/associations/has_one_through_association.rb +45 -0
- data/lib/active_record/associations/join_dependency/join_association.rb +106 -0
- data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
- data/lib/active_record/associations/join_dependency.rb +301 -0
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +316 -0
- data/lib/active_record/associations/preloader/batch.rb +48 -0
- data/lib/active_record/associations/preloader/branch.rb +153 -0
- data/lib/active_record/associations/preloader/through_association.rb +150 -0
- data/lib/active_record/associations/preloader.rb +135 -0
- data/lib/active_record/associations/singular_association.rb +76 -0
- data/lib/active_record/associations/through_association.rb +132 -0
- data/lib/active_record/associations.rb +1897 -0
- data/lib/active_record/asynchronous_queries_tracker.rb +64 -0
- data/lib/active_record/attribute_assignment.rb +82 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +106 -0
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/dirty.rb +262 -0
- data/lib/active_record/attribute_methods/primary_key.rb +158 -0
- data/lib/active_record/attribute_methods/query.rb +50 -0
- data/lib/active_record/attribute_methods/read.rb +46 -0
- data/lib/active_record/attribute_methods/serialization.rb +232 -0
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +94 -0
- data/lib/active_record/attribute_methods/write.rb +49 -0
- data/lib/active_record/attribute_methods.rb +542 -0
- data/lib/active_record/attributes.rb +307 -0
- data/lib/active_record/autosave_association.rb +586 -0
- data/lib/active_record/base.rb +338 -0
- data/lib/active_record/callbacks.rb +452 -0
- data/lib/active_record/coders/column_serializer.rb +61 -0
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +95 -0
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +290 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +210 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +78 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +923 -0
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +31 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +747 -0
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +319 -0
- data/lib/active_record/connection_adapters/abstract/quoting.rb +239 -0
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +24 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +190 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +961 -0
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +106 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1883 -0
- data/lib/active_record/connection_adapters/abstract/transaction.rb +676 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +1218 -0
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +1016 -0
- data/lib/active_record/connection_adapters/column.rb +122 -0
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +28 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +114 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +97 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +300 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +40 -0
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +96 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +196 -0
- data/lib/active_record/connection_adapters/pool_config.rb +83 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +57 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +82 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +231 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +91 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +54 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +31 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +20 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +109 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +42 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +74 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +124 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- 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 +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +125 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid.rb +38 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +238 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +169 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +392 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +127 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +1162 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +79 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1182 -0
- data/lib/active_record/connection_adapters/schema_cache.rb +478 -0
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +45 -0
- data/lib/active_record/connection_adapters/sqlite3/column.rb +62 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +145 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +116 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +39 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +47 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +221 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +843 -0
- data/lib/active_record/connection_adapters/statement_pool.rb +67 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +69 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +212 -0
- data/lib/active_record/connection_adapters.rb +176 -0
- data/lib/active_record/connection_handling.rb +413 -0
- data/lib/active_record/core.rb +836 -0
- data/lib/active_record/counter_cache.rb +230 -0
- data/lib/active_record/database_configurations/connection_url_resolver.rb +105 -0
- data/lib/active_record/database_configurations/database_config.rb +104 -0
- data/lib/active_record/database_configurations/hash_config.rb +172 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +309 -0
- data/lib/active_record/delegated_type.rb +289 -0
- data/lib/active_record/deprecator.rb +7 -0
- data/lib/active_record/destroy_association_async_job.rb +38 -0
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +121 -0
- data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +101 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +70 -0
- data/lib/active_record/encryption/configurable.rb +60 -0
- data/lib/active_record/encryption/context.rb +42 -0
- data/lib/active_record/encryption/contexts.rb +76 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +18 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +230 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +184 -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 +177 -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 +159 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +53 -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_pack_message_serializer.rb +76 -0
- data/lib/active_record/encryption/message_serializer.rb +96 -0
- data/lib/active_record/encryption/null_encryptor.rb +25 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +28 -0
- data/lib/active_record/encryption/scheme.rb +107 -0
- data/lib/active_record/encryption.rb +58 -0
- data/lib/active_record/enum.rb +424 -0
- data/lib/active_record/errors.rb +614 -0
- data/lib/active_record/explain.rb +63 -0
- data/lib/active_record/explain_registry.rb +37 -0
- data/lib/active_record/explain_subscriber.rb +34 -0
- data/lib/active_record/fixture_set/file.rb +89 -0
- data/lib/active_record/fixture_set/model_metadata.rb +42 -0
- data/lib/active_record/fixture_set/render_context.rb +19 -0
- data/lib/active_record/fixture_set/table_row.rb +208 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +850 -0
- data/lib/active_record/future_result.rb +182 -0
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +366 -0
- data/lib/active_record/insert_all.rb +328 -0
- data/lib/active_record/integration.rb +209 -0
- data/lib/active_record/internal_metadata.rb +164 -0
- data/lib/active_record/legacy_yaml_adapter.rb +15 -0
- data/lib/active_record/locale/en.yml +48 -0
- data/lib/active_record/locking/optimistic.rb +228 -0
- data/lib/active_record/locking/pessimistic.rb +102 -0
- data/lib/active_record/log_subscriber.rb +149 -0
- data/lib/active_record/marshalling.rb +56 -0
- data/lib/active_record/message_pack.rb +124 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +48 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
- data/lib/active_record/middleware/database_selector.rb +87 -0
- data/lib/active_record/middleware/shard_selector.rb +62 -0
- data/lib/active_record/migration/command_recorder.rb +406 -0
- data/lib/active_record/migration/compatibility.rb +490 -0
- data/lib/active_record/migration/default_strategy.rb +22 -0
- data/lib/active_record/migration/execution_strategy.rb +19 -0
- data/lib/active_record/migration/join_table.rb +16 -0
- data/lib/active_record/migration/pending_migration_connection.rb +21 -0
- data/lib/active_record/migration.rb +1626 -0
- data/lib/active_record/model_schema.rb +635 -0
- data/lib/active_record/nested_attributes.rb +633 -0
- data/lib/active_record/no_touching.rb +65 -0
- data/lib/active_record/normalization.rb +163 -0
- data/lib/active_record/persistence.rb +968 -0
- data/lib/active_record/promise.rb +84 -0
- data/lib/active_record/query_cache.rb +56 -0
- data/lib/active_record/query_logs.rb +247 -0
- data/lib/active_record/query_logs_formatter.rb +30 -0
- data/lib/active_record/querying.rb +122 -0
- data/lib/active_record/railtie.rb +440 -0
- data/lib/active_record/railties/console_sandbox.rb +5 -0
- data/lib/active_record/railties/controller_runtime.rb +65 -0
- data/lib/active_record/railties/databases.rake +641 -0
- data/lib/active_record/railties/job_runtime.rb +23 -0
- data/lib/active_record/readonly_attributes.rb +66 -0
- data/lib/active_record/reflection.rb +1287 -0
- data/lib/active_record/relation/batches/batch_enumerator.rb +115 -0
- data/lib/active_record/relation/batches.rb +491 -0
- data/lib/active_record/relation/calculations.rb +679 -0
- data/lib/active_record/relation/delegation.rb +154 -0
- data/lib/active_record/relation/finder_methods.rb +661 -0
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +192 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +76 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +60 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +24 -0
- data/lib/active_record/relation/predicate_builder.rb +181 -0
- data/lib/active_record/relation/query_attribute.rb +68 -0
- data/lib/active_record/relation/query_methods.rb +2235 -0
- data/lib/active_record/relation/record_fetch_warning.rb +52 -0
- data/lib/active_record/relation/spawn_methods.rb +78 -0
- data/lib/active_record/relation/where_clause.rb +218 -0
- data/lib/active_record/relation.rb +1495 -0
- data/lib/active_record/result.rb +249 -0
- data/lib/active_record/runtime_registry.rb +82 -0
- data/lib/active_record/sanitization.rb +254 -0
- data/lib/active_record/schema.rb +77 -0
- data/lib/active_record/schema_dumper.rb +364 -0
- data/lib/active_record/schema_migration.rb +106 -0
- data/lib/active_record/scoping/default.rb +205 -0
- data/lib/active_record/scoping/named.rb +202 -0
- data/lib/active_record/scoping.rb +136 -0
- data/lib/active_record/secure_password.rb +60 -0
- data/lib/active_record/secure_token.rb +66 -0
- data/lib/active_record/serialization.rb +29 -0
- data/lib/active_record/signed_id.rb +137 -0
- data/lib/active_record/statement_cache.rb +164 -0
- data/lib/active_record/store.rb +299 -0
- data/lib/active_record/suppressor.rb +59 -0
- data/lib/active_record/table_metadata.rb +85 -0
- data/lib/active_record/tasks/database_tasks.rb +681 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +120 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +147 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +89 -0
- data/lib/active_record/test_databases.rb +24 -0
- data/lib/active_record/test_fixtures.rb +321 -0
- data/lib/active_record/testing/query_assertions.rb +121 -0
- data/lib/active_record/timestamp.rb +177 -0
- data/lib/active_record/token_for.rb +123 -0
- data/lib/active_record/touch_later.rb +70 -0
- data/lib/active_record/transaction.rb +132 -0
- data/lib/active_record/transactions.rb +523 -0
- data/lib/active_record/translation.rb +22 -0
- data/lib/active_record/type/adapter_specific_registry.rb +144 -0
- data/lib/active_record/type/date.rb +9 -0
- data/lib/active_record/type/date_time.rb +9 -0
- data/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/lib/active_record/type/hash_lookup_type_map.rb +57 -0
- data/lib/active_record/type/internal/timezone.rb +22 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +76 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +35 -0
- data/lib/active_record/type/type_map.rb +58 -0
- data/lib/active_record/type/unsigned_integer.rb +16 -0
- data/lib/active_record/type.rb +83 -0
- data/lib/active_record/type_caster/connection.rb +33 -0
- data/lib/active_record/type_caster/map.rb +23 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +65 -0
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/numericality.rb +36 -0
- data/lib/active_record/validations/presence.rb +45 -0
- data/lib/active_record/validations/uniqueness.rb +295 -0
- data/lib/active_record/validations.rb +101 -0
- data/lib/active_record/version.rb +10 -0
- data/lib/active_record.rb +616 -0
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +33 -0
- data/lib/arel/collectors/bind.rb +31 -0
- data/lib/arel/collectors/composite.rb +46 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +27 -0
- data/lib/arel/collectors/substitute_binds.rb +35 -0
- data/lib/arel/crud.rb +48 -0
- data/lib/arel/delete_manager.rb +32 -0
- data/lib/arel/errors.rb +19 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +53 -0
- data/lib/arel/filter_predications.rb +9 -0
- data/lib/arel/insert_manager.rb +48 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +125 -0
- data/lib/arel/nodes/bind_param.rb +44 -0
- data/lib/arel/nodes/bound_sql_literal.rb +65 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +62 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/cte.rb +36 -0
- data/lib/arel/nodes/delete_statement.rb +44 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +15 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/filter.rb +10 -0
- data/lib/arel/nodes/fragments.rb +35 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +45 -0
- data/lib/arel/nodes/grouping.rb +11 -0
- data/lib/arel/nodes/homogeneous_in.rb +68 -0
- data/lib/arel/nodes/in.rb +15 -0
- data/lib/arel/nodes/infix_operation.rb +92 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/leading_join.rb +8 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/nary.rb +39 -0
- data/lib/arel/nodes/node.rb +161 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/ordering.rb +27 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +32 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +35 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +44 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +46 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/nodes.rb +75 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +260 -0
- data/lib/arel/select_manager.rb +276 -0
- data/lib/arel/table.rb +121 -0
- data/lib/arel/tree_manager.rb +65 -0
- data/lib/arel/update_manager.rb +49 -0
- data/lib/arel/visitors/dot.rb +299 -0
- data/lib/arel/visitors/mysql.rb +111 -0
- data/lib/arel/visitors/postgresql.rb +99 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +1033 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors.rb +13 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +73 -0
- data/lib/rails/generators/active_record/application_record/USAGE +8 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +76 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +29 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
- data/lib/rails/generators/active_record/migration.rb +54 -0
- data/lib/rails/generators/active_record/model/USAGE +113 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +94 -0
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
- data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
- data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
- data/lib/rails/generators/active_record.rb +19 -0
- metadata +505 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Arel # :nodoc: all
|
4
|
+
module Nodes
|
5
|
+
class UpdateStatement < Arel::Nodes::Node
|
6
|
+
attr_accessor :relation, :wheres, :values, :groups, :havings, :orders, :limit, :offset, :key
|
7
|
+
|
8
|
+
def initialize(relation = nil)
|
9
|
+
super()
|
10
|
+
@relation = relation
|
11
|
+
@wheres = []
|
12
|
+
@values = []
|
13
|
+
@groups = []
|
14
|
+
@havings = []
|
15
|
+
@orders = []
|
16
|
+
@limit = nil
|
17
|
+
@offset = nil
|
18
|
+
@key = nil
|
19
|
+
end
|
20
|
+
|
21
|
+
def initialize_copy(other)
|
22
|
+
super
|
23
|
+
@wheres = @wheres.clone
|
24
|
+
@values = @values.clone
|
25
|
+
end
|
26
|
+
|
27
|
+
def hash
|
28
|
+
[@relation, @wheres, @values, @orders, @limit, @offset, @key].hash
|
29
|
+
end
|
30
|
+
|
31
|
+
def eql?(other)
|
32
|
+
self.class == other.class &&
|
33
|
+
self.relation == other.relation &&
|
34
|
+
self.wheres == other.wheres &&
|
35
|
+
self.values == other.values &&
|
36
|
+
self.groups == other.groups &&
|
37
|
+
self.havings == other.havings &&
|
38
|
+
self.orders == other.orders &&
|
39
|
+
self.limit == other.limit &&
|
40
|
+
self.offset == other.offset &&
|
41
|
+
self.key == other.key
|
42
|
+
end
|
43
|
+
alias :== :eql?
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,126 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Arel # :nodoc: all
|
4
|
+
module Nodes
|
5
|
+
class Window < Arel::Nodes::Node
|
6
|
+
attr_accessor :orders, :framing, :partitions
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
@orders = []
|
10
|
+
@partitions = []
|
11
|
+
@framing = nil
|
12
|
+
end
|
13
|
+
|
14
|
+
def order(*expr)
|
15
|
+
# FIXME: We SHOULD NOT be converting these to SqlLiteral automatically
|
16
|
+
@orders.concat expr.map { |x|
|
17
|
+
String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
|
18
|
+
}
|
19
|
+
self
|
20
|
+
end
|
21
|
+
|
22
|
+
def partition(*expr)
|
23
|
+
# FIXME: We SHOULD NOT be converting these to SqlLiteral automatically
|
24
|
+
@partitions.concat expr.map { |x|
|
25
|
+
String === x || Symbol === x ? Nodes::SqlLiteral.new(x.to_s) : x
|
26
|
+
}
|
27
|
+
self
|
28
|
+
end
|
29
|
+
|
30
|
+
def frame(expr)
|
31
|
+
@framing = expr
|
32
|
+
end
|
33
|
+
|
34
|
+
def rows(expr = nil)
|
35
|
+
if @framing
|
36
|
+
Rows.new(expr)
|
37
|
+
else
|
38
|
+
frame(Rows.new(expr))
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def range(expr = nil)
|
43
|
+
if @framing
|
44
|
+
Range.new(expr)
|
45
|
+
else
|
46
|
+
frame(Range.new(expr))
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def initialize_copy(other)
|
51
|
+
super
|
52
|
+
@orders = @orders.map { |x| x.clone }
|
53
|
+
end
|
54
|
+
|
55
|
+
def hash
|
56
|
+
[@orders, @framing].hash
|
57
|
+
end
|
58
|
+
|
59
|
+
def eql?(other)
|
60
|
+
self.class == other.class &&
|
61
|
+
self.orders == other.orders &&
|
62
|
+
self.framing == other.framing &&
|
63
|
+
self.partitions == other.partitions
|
64
|
+
end
|
65
|
+
alias :== :eql?
|
66
|
+
end
|
67
|
+
|
68
|
+
class NamedWindow < Window
|
69
|
+
attr_accessor :name
|
70
|
+
|
71
|
+
def initialize(name)
|
72
|
+
super()
|
73
|
+
@name = name
|
74
|
+
end
|
75
|
+
|
76
|
+
def initialize_copy(other)
|
77
|
+
super
|
78
|
+
@name = other.name.clone
|
79
|
+
end
|
80
|
+
|
81
|
+
def hash
|
82
|
+
super ^ @name.hash
|
83
|
+
end
|
84
|
+
|
85
|
+
def eql?(other)
|
86
|
+
super && self.name == other.name
|
87
|
+
end
|
88
|
+
alias :== :eql?
|
89
|
+
end
|
90
|
+
|
91
|
+
class Rows < Unary
|
92
|
+
def initialize(expr = nil)
|
93
|
+
super(expr)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
class Range < Unary
|
98
|
+
def initialize(expr = nil)
|
99
|
+
super(expr)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
class CurrentRow < Node
|
104
|
+
def hash
|
105
|
+
self.class.hash
|
106
|
+
end
|
107
|
+
|
108
|
+
def eql?(other)
|
109
|
+
self.class == other.class
|
110
|
+
end
|
111
|
+
alias :== :eql?
|
112
|
+
end
|
113
|
+
|
114
|
+
class Preceding < Unary
|
115
|
+
def initialize(expr = nil)
|
116
|
+
super(expr)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
class Following < Unary
|
121
|
+
def initialize(expr = nil)
|
122
|
+
super(expr)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
data/lib/arel/nodes.rb
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# node
|
4
|
+
require "arel/nodes/node"
|
5
|
+
require "arel/nodes/node_expression"
|
6
|
+
require "arel/nodes/select_statement"
|
7
|
+
require "arel/nodes/select_core"
|
8
|
+
require "arel/nodes/insert_statement"
|
9
|
+
require "arel/nodes/update_statement"
|
10
|
+
require "arel/nodes/bind_param"
|
11
|
+
require "arel/nodes/fragments"
|
12
|
+
|
13
|
+
# terminal
|
14
|
+
|
15
|
+
require "arel/nodes/terminal"
|
16
|
+
require "arel/nodes/true"
|
17
|
+
require "arel/nodes/false"
|
18
|
+
|
19
|
+
# unary
|
20
|
+
require "arel/nodes/unary"
|
21
|
+
require "arel/nodes/grouping"
|
22
|
+
require "arel/nodes/homogeneous_in"
|
23
|
+
require "arel/nodes/ordering"
|
24
|
+
require "arel/nodes/ascending"
|
25
|
+
require "arel/nodes/descending"
|
26
|
+
require "arel/nodes/unqualified_column"
|
27
|
+
require "arel/nodes/with"
|
28
|
+
|
29
|
+
# binary
|
30
|
+
require "arel/nodes/binary"
|
31
|
+
require "arel/nodes/equality"
|
32
|
+
require "arel/nodes/filter"
|
33
|
+
require "arel/nodes/in"
|
34
|
+
require "arel/nodes/join_source"
|
35
|
+
require "arel/nodes/delete_statement"
|
36
|
+
require "arel/nodes/table_alias"
|
37
|
+
require "arel/nodes/infix_operation"
|
38
|
+
require "arel/nodes/unary_operation"
|
39
|
+
require "arel/nodes/over"
|
40
|
+
require "arel/nodes/matches"
|
41
|
+
require "arel/nodes/regexp"
|
42
|
+
require "arel/nodes/cte"
|
43
|
+
|
44
|
+
# nary (And and Or)
|
45
|
+
require "arel/nodes/nary"
|
46
|
+
|
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
|
+
require "arel/nodes/function"
|
51
|
+
require "arel/nodes/count"
|
52
|
+
require "arel/nodes/extract"
|
53
|
+
require "arel/nodes/values_list"
|
54
|
+
require "arel/nodes/named_function"
|
55
|
+
|
56
|
+
# windows
|
57
|
+
require "arel/nodes/window"
|
58
|
+
|
59
|
+
# conditional expressions
|
60
|
+
require "arel/nodes/case"
|
61
|
+
|
62
|
+
# joins
|
63
|
+
require "arel/nodes/full_outer_join"
|
64
|
+
require "arel/nodes/inner_join"
|
65
|
+
require "arel/nodes/outer_join"
|
66
|
+
require "arel/nodes/right_outer_join"
|
67
|
+
require "arel/nodes/string_join"
|
68
|
+
require "arel/nodes/leading_join"
|
69
|
+
|
70
|
+
require "arel/nodes/comment"
|
71
|
+
|
72
|
+
require "arel/nodes/sql_literal"
|
73
|
+
require "arel/nodes/bound_sql_literal"
|
74
|
+
|
75
|
+
require "arel/nodes/casted"
|
@@ -0,0 +1,260 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Arel # :nodoc: all
|
4
|
+
module Predications
|
5
|
+
def not_eq(other)
|
6
|
+
Nodes::NotEqual.new self, quoted_node(other)
|
7
|
+
end
|
8
|
+
|
9
|
+
def not_eq_any(others)
|
10
|
+
grouping_any :not_eq, others
|
11
|
+
end
|
12
|
+
|
13
|
+
def not_eq_all(others)
|
14
|
+
grouping_all :not_eq, others
|
15
|
+
end
|
16
|
+
|
17
|
+
def eq(other)
|
18
|
+
Nodes::Equality.new self, quoted_node(other)
|
19
|
+
end
|
20
|
+
|
21
|
+
def is_not_distinct_from(other)
|
22
|
+
Nodes::IsNotDistinctFrom.new self, quoted_node(other)
|
23
|
+
end
|
24
|
+
|
25
|
+
def is_distinct_from(other)
|
26
|
+
Nodes::IsDistinctFrom.new self, quoted_node(other)
|
27
|
+
end
|
28
|
+
|
29
|
+
def eq_any(others)
|
30
|
+
grouping_any :eq, others
|
31
|
+
end
|
32
|
+
|
33
|
+
def eq_all(others)
|
34
|
+
grouping_all :eq, quoted_array(others)
|
35
|
+
end
|
36
|
+
|
37
|
+
def between(other)
|
38
|
+
if unboundable?(other.begin) == 1 || unboundable?(other.end) == -1
|
39
|
+
self.in([])
|
40
|
+
elsif open_ended?(other.begin)
|
41
|
+
if open_ended?(other.end)
|
42
|
+
if infinity?(other.begin) == 1 || infinity?(other.end) == -1
|
43
|
+
self.in([])
|
44
|
+
else
|
45
|
+
not_in([])
|
46
|
+
end
|
47
|
+
elsif other.exclude_end?
|
48
|
+
lt(other.end)
|
49
|
+
else
|
50
|
+
lteq(other.end)
|
51
|
+
end
|
52
|
+
elsif open_ended?(other.end)
|
53
|
+
gteq(other.begin)
|
54
|
+
elsif other.exclude_end?
|
55
|
+
gteq(other.begin).and(lt(other.end))
|
56
|
+
elsif other.begin == other.end
|
57
|
+
eq(other.begin)
|
58
|
+
else
|
59
|
+
left = quoted_node(other.begin)
|
60
|
+
right = quoted_node(other.end)
|
61
|
+
Nodes::Between.new(self, Nodes::And.new([left, right]))
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def in(other)
|
66
|
+
case other
|
67
|
+
when Arel::SelectManager
|
68
|
+
Arel::Nodes::In.new(self, other.ast)
|
69
|
+
when Enumerable
|
70
|
+
Nodes::In.new self, quoted_array(other)
|
71
|
+
else
|
72
|
+
Nodes::In.new self, quoted_node(other)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def in_any(others)
|
77
|
+
grouping_any :in, others
|
78
|
+
end
|
79
|
+
|
80
|
+
def in_all(others)
|
81
|
+
grouping_all :in, others
|
82
|
+
end
|
83
|
+
|
84
|
+
def not_between(other)
|
85
|
+
if unboundable?(other.begin) == 1 || unboundable?(other.end) == -1
|
86
|
+
not_in([])
|
87
|
+
elsif open_ended?(other.begin)
|
88
|
+
if open_ended?(other.end)
|
89
|
+
if infinity?(other.begin) == 1 || infinity?(other.end) == -1
|
90
|
+
not_in([])
|
91
|
+
else
|
92
|
+
self.in([])
|
93
|
+
end
|
94
|
+
elsif other.exclude_end?
|
95
|
+
gteq(other.end)
|
96
|
+
else
|
97
|
+
gt(other.end)
|
98
|
+
end
|
99
|
+
elsif open_ended?(other.end)
|
100
|
+
lt(other.begin)
|
101
|
+
else
|
102
|
+
left = lt(other.begin)
|
103
|
+
right = if other.exclude_end?
|
104
|
+
gteq(other.end)
|
105
|
+
else
|
106
|
+
gt(other.end)
|
107
|
+
end
|
108
|
+
left.or(right)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
def not_in(other)
|
113
|
+
case other
|
114
|
+
when Arel::SelectManager
|
115
|
+
Arel::Nodes::NotIn.new(self, other.ast)
|
116
|
+
when Enumerable
|
117
|
+
Nodes::NotIn.new self, quoted_array(other)
|
118
|
+
else
|
119
|
+
Nodes::NotIn.new self, quoted_node(other)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def not_in_any(others)
|
124
|
+
grouping_any :not_in, others
|
125
|
+
end
|
126
|
+
|
127
|
+
def not_in_all(others)
|
128
|
+
grouping_all :not_in, others
|
129
|
+
end
|
130
|
+
|
131
|
+
def matches(other, escape = nil, case_sensitive = false)
|
132
|
+
Nodes::Matches.new self, quoted_node(other), escape, case_sensitive
|
133
|
+
end
|
134
|
+
|
135
|
+
def matches_regexp(other, case_sensitive = true)
|
136
|
+
Nodes::Regexp.new self, quoted_node(other), case_sensitive
|
137
|
+
end
|
138
|
+
|
139
|
+
def matches_any(others, escape = nil, case_sensitive = false)
|
140
|
+
grouping_any :matches, others, escape, case_sensitive
|
141
|
+
end
|
142
|
+
|
143
|
+
def matches_all(others, escape = nil, case_sensitive = false)
|
144
|
+
grouping_all :matches, others, escape, case_sensitive
|
145
|
+
end
|
146
|
+
|
147
|
+
def does_not_match(other, escape = nil, case_sensitive = false)
|
148
|
+
Nodes::DoesNotMatch.new self, quoted_node(other), escape, case_sensitive
|
149
|
+
end
|
150
|
+
|
151
|
+
def does_not_match_regexp(other, case_sensitive = true)
|
152
|
+
Nodes::NotRegexp.new self, quoted_node(other), case_sensitive
|
153
|
+
end
|
154
|
+
|
155
|
+
def does_not_match_any(others, escape = nil)
|
156
|
+
grouping_any :does_not_match, others, escape
|
157
|
+
end
|
158
|
+
|
159
|
+
def does_not_match_all(others, escape = nil)
|
160
|
+
grouping_all :does_not_match, others, escape
|
161
|
+
end
|
162
|
+
|
163
|
+
def gteq(right)
|
164
|
+
Nodes::GreaterThanOrEqual.new self, quoted_node(right)
|
165
|
+
end
|
166
|
+
|
167
|
+
def gteq_any(others)
|
168
|
+
grouping_any :gteq, others
|
169
|
+
end
|
170
|
+
|
171
|
+
def gteq_all(others)
|
172
|
+
grouping_all :gteq, others
|
173
|
+
end
|
174
|
+
|
175
|
+
def gt(right)
|
176
|
+
Nodes::GreaterThan.new self, quoted_node(right)
|
177
|
+
end
|
178
|
+
|
179
|
+
def gt_any(others)
|
180
|
+
grouping_any :gt, others
|
181
|
+
end
|
182
|
+
|
183
|
+
def gt_all(others)
|
184
|
+
grouping_all :gt, others
|
185
|
+
end
|
186
|
+
|
187
|
+
def lt(right)
|
188
|
+
Nodes::LessThan.new self, quoted_node(right)
|
189
|
+
end
|
190
|
+
|
191
|
+
def lt_any(others)
|
192
|
+
grouping_any :lt, others
|
193
|
+
end
|
194
|
+
|
195
|
+
def lt_all(others)
|
196
|
+
grouping_all :lt, others
|
197
|
+
end
|
198
|
+
|
199
|
+
def lteq(right)
|
200
|
+
Nodes::LessThanOrEqual.new self, quoted_node(right)
|
201
|
+
end
|
202
|
+
|
203
|
+
def lteq_any(others)
|
204
|
+
grouping_any :lteq, others
|
205
|
+
end
|
206
|
+
|
207
|
+
def lteq_all(others)
|
208
|
+
grouping_all :lteq, others
|
209
|
+
end
|
210
|
+
|
211
|
+
def when(right)
|
212
|
+
Nodes::Case.new(self).when quoted_node(right)
|
213
|
+
end
|
214
|
+
|
215
|
+
def concat(other)
|
216
|
+
Nodes::Concat.new self, other
|
217
|
+
end
|
218
|
+
|
219
|
+
def contains(other)
|
220
|
+
Arel::Nodes::Contains.new self, quoted_node(other)
|
221
|
+
end
|
222
|
+
|
223
|
+
def overlaps(other)
|
224
|
+
Arel::Nodes::Overlaps.new self, quoted_node(other)
|
225
|
+
end
|
226
|
+
|
227
|
+
def quoted_array(others)
|
228
|
+
others.map { |v| quoted_node(v) }
|
229
|
+
end
|
230
|
+
|
231
|
+
private
|
232
|
+
def grouping_any(method_id, others, *extras)
|
233
|
+
nodes = others.map { |expr| send(method_id, expr, *extras) }
|
234
|
+
Nodes::Grouping.new nodes.inject { |memo, node|
|
235
|
+
Nodes::Or.new([memo, node])
|
236
|
+
}
|
237
|
+
end
|
238
|
+
|
239
|
+
def grouping_all(method_id, others, *extras)
|
240
|
+
nodes = others.map { |expr| send(method_id, expr, *extras) }
|
241
|
+
Nodes::Grouping.new Nodes::And.new(nodes)
|
242
|
+
end
|
243
|
+
|
244
|
+
def quoted_node(other)
|
245
|
+
Nodes.build_quoted(other, self)
|
246
|
+
end
|
247
|
+
|
248
|
+
def infinity?(value)
|
249
|
+
value.respond_to?(:infinite?) && value.infinite?
|
250
|
+
end
|
251
|
+
|
252
|
+
def unboundable?(value)
|
253
|
+
value.respond_to?(:unboundable?) && value.unboundable?
|
254
|
+
end
|
255
|
+
|
256
|
+
def open_ended?(value)
|
257
|
+
value.nil? || infinity?(value) || unboundable?(value)
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|