activerecord 5.2.3 → 6.1.0
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.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +898 -532
- data/MIT-LICENSE +3 -1
- data/README.rdoc +7 -5
- data/examples/performance.rb +1 -1
- data/lib/active_record/aggregations.rb +5 -4
- data/lib/active_record/association_relation.rb +22 -12
- data/lib/active_record/associations/alias_tracker.rb +19 -16
- data/lib/active_record/associations/association.rb +95 -42
- data/lib/active_record/associations/association_scope.rb +21 -21
- data/lib/active_record/associations/belongs_to_association.rb +50 -46
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +1 -5
- data/lib/active_record/associations/builder/association.rb +23 -21
- data/lib/active_record/associations/builder/belongs_to.rb +29 -59
- data/lib/active_record/associations/builder/collection_association.rb +10 -19
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +17 -41
- data/lib/active_record/associations/builder/has_many.rb +8 -2
- data/lib/active_record/associations/builder/has_one.rb +33 -2
- data/lib/active_record/associations/builder/singular_association.rb +3 -1
- data/lib/active_record/associations/collection_association.rb +31 -29
- data/lib/active_record/associations/collection_proxy.rb +25 -21
- data/lib/active_record/associations/foreign_association.rb +20 -0
- data/lib/active_record/associations/has_many_association.rb +26 -13
- data/lib/active_record/associations/has_many_through_association.rb +27 -28
- data/lib/active_record/associations/has_one_association.rb +43 -31
- data/lib/active_record/associations/has_one_through_association.rb +5 -5
- data/lib/active_record/associations/join_dependency/join_association.rb +54 -12
- data/lib/active_record/associations/join_dependency/join_part.rb +5 -5
- data/lib/active_record/associations/join_dependency.rb +91 -60
- data/lib/active_record/associations/preloader/association.rb +71 -43
- data/lib/active_record/associations/preloader/through_association.rb +49 -40
- data/lib/active_record/associations/preloader.rb +48 -35
- data/lib/active_record/associations/singular_association.rb +3 -17
- data/lib/active_record/associations/through_association.rb +1 -1
- data/lib/active_record/associations.rb +133 -25
- data/lib/active_record/attribute_assignment.rb +17 -19
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -7
- data/lib/active_record/attribute_methods/dirty.rb +101 -40
- data/lib/active_record/attribute_methods/primary_key.rb +20 -25
- data/lib/active_record/attribute_methods/query.rb +4 -8
- data/lib/active_record/attribute_methods/read.rb +14 -56
- data/lib/active_record/attribute_methods/serialization.rb +12 -7
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +12 -15
- data/lib/active_record/attribute_methods/write.rb +18 -34
- data/lib/active_record/attribute_methods.rb +81 -143
- data/lib/active_record/attributes.rb +45 -8
- data/lib/active_record/autosave_association.rb +76 -47
- data/lib/active_record/base.rb +4 -17
- data/lib/active_record/callbacks.rb +158 -43
- data/lib/active_record/coders/yaml_column.rb +1 -2
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +293 -132
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +7 -36
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +167 -146
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +21 -17
- data/lib/active_record/connection_adapters/abstract/quoting.rb +98 -47
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +153 -110
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +203 -90
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +2 -4
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +381 -146
- data/lib/active_record/connection_adapters/abstract/transaction.rb +155 -68
- data/lib/active_record/connection_adapters/abstract_adapter.rb +229 -98
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +243 -275
- data/lib/active_record/connection_adapters/column.rb +30 -12
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/legacy_pool_manager.rb +31 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +1 -1
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +86 -32
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +1 -2
- data/lib/active_record/connection_adapters/mysql/quoting.rb +44 -7
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +34 -10
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +48 -32
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +14 -6
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +139 -19
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +14 -9
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +53 -18
- data/lib/active_record/connection_adapters/pool_config.rb +63 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +43 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +37 -28
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +38 -54
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +1 -2
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +1 -4
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +3 -5
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +10 -2
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +1 -2
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +3 -4
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +3 -4
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +25 -7
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +9 -7
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +15 -3
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +47 -10
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +19 -4
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +107 -91
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +120 -100
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +31 -26
- data/lib/active_record/connection_adapters/postgresql/utils.rb +0 -1
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +222 -112
- data/lib/active_record/connection_adapters/schema_cache.rb +127 -21
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +19 -6
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +144 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +42 -7
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +5 -1
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +77 -13
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +175 -187
- data/lib/active_record/connection_adapters/statement_pool.rb +0 -1
- data/lib/active_record/connection_adapters.rb +50 -0
- data/lib/active_record/connection_handling.rb +285 -33
- data/lib/active_record/core.rb +308 -100
- data/lib/active_record/counter_cache.rb +8 -30
- data/lib/active_record/database_configurations/connection_url_resolver.rb +98 -0
- data/lib/active_record/database_configurations/database_config.rb +80 -0
- data/lib/active_record/database_configurations/hash_config.rb +96 -0
- data/lib/active_record/database_configurations/url_config.rb +53 -0
- data/lib/active_record/database_configurations.rb +272 -0
- data/lib/active_record/delegated_type.rb +209 -0
- data/lib/active_record/destroy_association_async_job.rb +36 -0
- data/lib/active_record/dynamic_matchers.rb +3 -4
- data/lib/active_record/enum.rb +71 -17
- data/lib/active_record/errors.rb +62 -19
- data/lib/active_record/explain.rb +10 -6
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +10 -17
- data/lib/active_record/fixture_set/model_metadata.rb +32 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +152 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +197 -481
- data/lib/active_record/gem_version.rb +3 -3
- data/lib/active_record/inheritance.rb +53 -24
- data/lib/active_record/insert_all.rb +208 -0
- data/lib/active_record/integration.rb +67 -17
- data/lib/active_record/internal_metadata.rb +26 -9
- data/lib/active_record/legacy_yaml_adapter.rb +7 -3
- data/lib/active_record/locking/optimistic.rb +26 -22
- data/lib/active_record/locking/pessimistic.rb +9 -5
- data/lib/active_record/log_subscriber.rb +34 -35
- 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 +77 -0
- data/lib/active_record/migration/command_recorder.rb +96 -44
- data/lib/active_record/migration/compatibility.rb +141 -64
- data/lib/active_record/migration/join_table.rb +0 -1
- data/lib/active_record/migration.rb +205 -156
- data/lib/active_record/model_schema.rb +148 -22
- data/lib/active_record/nested_attributes.rb +4 -7
- data/lib/active_record/no_touching.rb +8 -1
- data/lib/active_record/null_relation.rb +0 -1
- data/lib/active_record/persistence.rb +267 -59
- data/lib/active_record/query_cache.rb +21 -4
- data/lib/active_record/querying.rb +40 -23
- data/lib/active_record/railtie.rb +115 -58
- data/lib/active_record/railties/controller_runtime.rb +30 -35
- data/lib/active_record/railties/databases.rake +402 -78
- data/lib/active_record/readonly_attributes.rb +4 -0
- data/lib/active_record/reflection.rb +113 -101
- data/lib/active_record/relation/batches/batch_enumerator.rb +25 -9
- data/lib/active_record/relation/batches.rb +44 -35
- data/lib/active_record/relation/calculations.rb +157 -93
- data/lib/active_record/relation/delegation.rb +35 -50
- data/lib/active_record/relation/finder_methods.rb +65 -40
- data/lib/active_record/relation/from_clause.rb +5 -1
- data/lib/active_record/relation/merger.rb +32 -40
- data/lib/active_record/relation/predicate_builder/array_handler.rb +13 -13
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +5 -9
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +1 -2
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +4 -7
- data/lib/active_record/relation/predicate_builder/range_handler.rb +3 -23
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +1 -1
- data/lib/active_record/relation/predicate_builder.rb +58 -40
- data/lib/active_record/relation/query_attribute.rb +13 -8
- data/lib/active_record/relation/query_methods.rb +487 -199
- data/lib/active_record/relation/record_fetch_warning.rb +3 -3
- data/lib/active_record/relation/spawn_methods.rb +9 -9
- data/lib/active_record/relation/where_clause.rb +108 -58
- data/lib/active_record/relation.rb +375 -104
- data/lib/active_record/result.rb +64 -38
- data/lib/active_record/runtime_registry.rb +2 -2
- data/lib/active_record/sanitization.rb +22 -41
- data/lib/active_record/schema.rb +2 -11
- data/lib/active_record/schema_dumper.rb +54 -9
- data/lib/active_record/schema_migration.rb +7 -9
- data/lib/active_record/scoping/default.rb +6 -8
- data/lib/active_record/scoping/named.rb +17 -24
- data/lib/active_record/scoping.rb +8 -9
- data/lib/active_record/secure_token.rb +16 -8
- data/lib/active_record/serialization.rb +5 -3
- data/lib/active_record/signed_id.rb +116 -0
- data/lib/active_record/statement_cache.rb +51 -8
- data/lib/active_record/store.rb +88 -9
- data/lib/active_record/suppressor.rb +2 -2
- data/lib/active_record/table_metadata.rb +39 -43
- data/lib/active_record/tasks/database_tasks.rb +276 -81
- data/lib/active_record/tasks/mysql_database_tasks.rb +37 -39
- data/lib/active_record/tasks/postgresql_database_tasks.rb +27 -32
- data/lib/active_record/tasks/sqlite_database_tasks.rb +14 -17
- data/lib/active_record/test_databases.rb +24 -0
- data/lib/active_record/test_fixtures.rb +246 -0
- data/lib/active_record/timestamp.rb +43 -32
- data/lib/active_record/touch_later.rb +23 -22
- data/lib/active_record/transactions.rb +59 -117
- data/lib/active_record/translation.rb +1 -1
- data/lib/active_record/type/adapter_specific_registry.rb +3 -13
- data/lib/active_record/type/hash_lookup_type_map.rb +0 -1
- data/lib/active_record/type/serialized.rb +6 -3
- data/lib/active_record/type/time.rb +10 -0
- data/lib/active_record/type/type_map.rb +0 -1
- data/lib/active_record/type/unsigned_integer.rb +0 -1
- data/lib/active_record/type.rb +10 -5
- data/lib/active_record/type_caster/connection.rb +15 -15
- data/lib/active_record/type_caster/map.rb +8 -8
- data/lib/active_record/validations/associated.rb +1 -2
- data/lib/active_record/validations/numericality.rb +35 -0
- data/lib/active_record/validations/uniqueness.rb +38 -30
- data/lib/active_record/validations.rb +4 -3
- data/lib/active_record.rb +13 -12
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +41 -0
- data/lib/arel/collectors/bind.rb +29 -0
- data/lib/arel/collectors/composite.rb +39 -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 +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +126 -0
- data/lib/arel/nodes/bind_param.rb +44 -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/delete_statement.rb +45 -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/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +11 -0
- data/lib/arel/nodes/homogeneous_in.rb +72 -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/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +51 -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 +19 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +31 -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 +41 -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 +70 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +250 -0
- data/lib/arel/select_manager.rb +270 -0
- data/lib/arel/table.rb +118 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors/dot.rb +308 -0
- data/lib/arel/visitors/mysql.rb +93 -0
- data/lib/arel/visitors/postgresql.rb +120 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +899 -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 +54 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +0 -1
- data/lib/rails/generators/active_record/migration/migration_generator.rb +3 -5
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +3 -1
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +7 -5
- data/lib/rails/generators/active_record/migration.rb +19 -2
- data/lib/rails/generators/active_record/model/model_generator.rb +39 -2
- 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 +10 -1
- metadata +117 -32
- data/lib/active_record/attribute_decorators.rb +0 -90
- data/lib/active_record/collection_cache_key.rb +0 -53
- data/lib/active_record/connection_adapters/connection_specification.rb +0 -287
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +0 -33
- data/lib/active_record/define_callbacks.rb +0 -22
- data/lib/active_record/relation/predicate_builder/base_handler.rb +0 -19
- data/lib/active_record/relation/where_clause_factory.rb +0 -34
| @@ -0,0 +1,92 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class InfixOperation < Binary
         | 
| 6 | 
            +
                  include Arel::Expressions
         | 
| 7 | 
            +
                  include Arel::Predications
         | 
| 8 | 
            +
                  include Arel::OrderPredications
         | 
| 9 | 
            +
                  include Arel::AliasPredication
         | 
| 10 | 
            +
                  include Arel::Math
         | 
| 11 | 
            +
             | 
| 12 | 
            +
                  attr_reader :operator
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                  def initialize(operator, left, right)
         | 
| 15 | 
            +
                    super(left, right)
         | 
| 16 | 
            +
                    @operator = operator
         | 
| 17 | 
            +
                  end
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                class Multiplication < InfixOperation
         | 
| 21 | 
            +
                  def initialize(left, right)
         | 
| 22 | 
            +
                    super(:*, left, right)
         | 
| 23 | 
            +
                  end
         | 
| 24 | 
            +
                end
         | 
| 25 | 
            +
             | 
| 26 | 
            +
                class Division < InfixOperation
         | 
| 27 | 
            +
                  def initialize(left, right)
         | 
| 28 | 
            +
                    super(:/, left, right)
         | 
| 29 | 
            +
                  end
         | 
| 30 | 
            +
                end
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                class Addition < InfixOperation
         | 
| 33 | 
            +
                  def initialize(left, right)
         | 
| 34 | 
            +
                    super(:+, left, right)
         | 
| 35 | 
            +
                  end
         | 
| 36 | 
            +
                end
         | 
| 37 | 
            +
             | 
| 38 | 
            +
                class Subtraction < InfixOperation
         | 
| 39 | 
            +
                  def initialize(left, right)
         | 
| 40 | 
            +
                    super(:-, left, right)
         | 
| 41 | 
            +
                  end
         | 
| 42 | 
            +
                end
         | 
| 43 | 
            +
             | 
| 44 | 
            +
                class Concat < InfixOperation
         | 
| 45 | 
            +
                  def initialize(left, right)
         | 
| 46 | 
            +
                    super(:"||", left, right)
         | 
| 47 | 
            +
                  end
         | 
| 48 | 
            +
                end
         | 
| 49 | 
            +
             | 
| 50 | 
            +
                class Contains < InfixOperation
         | 
| 51 | 
            +
                  def initialize(left, right)
         | 
| 52 | 
            +
                    super(:"@>", left, right)
         | 
| 53 | 
            +
                  end
         | 
| 54 | 
            +
                end
         | 
| 55 | 
            +
             | 
| 56 | 
            +
                class Overlaps < InfixOperation
         | 
| 57 | 
            +
                  def initialize(left, right)
         | 
| 58 | 
            +
                    super(:"&&", left, right)
         | 
| 59 | 
            +
                  end
         | 
| 60 | 
            +
                end
         | 
| 61 | 
            +
             | 
| 62 | 
            +
                class BitwiseAnd < InfixOperation
         | 
| 63 | 
            +
                  def initialize(left, right)
         | 
| 64 | 
            +
                    super(:&, left, right)
         | 
| 65 | 
            +
                  end
         | 
| 66 | 
            +
                end
         | 
| 67 | 
            +
             | 
| 68 | 
            +
                class BitwiseOr < InfixOperation
         | 
| 69 | 
            +
                  def initialize(left, right)
         | 
| 70 | 
            +
                    super(:|, left, right)
         | 
| 71 | 
            +
                  end
         | 
| 72 | 
            +
                end
         | 
| 73 | 
            +
             | 
| 74 | 
            +
                class BitwiseXor < InfixOperation
         | 
| 75 | 
            +
                  def initialize(left, right)
         | 
| 76 | 
            +
                    super(:^, left, right)
         | 
| 77 | 
            +
                  end
         | 
| 78 | 
            +
                end
         | 
| 79 | 
            +
             | 
| 80 | 
            +
                class BitwiseShiftLeft < InfixOperation
         | 
| 81 | 
            +
                  def initialize(left, right)
         | 
| 82 | 
            +
                    super(:<<, left, right)
         | 
| 83 | 
            +
                  end
         | 
| 84 | 
            +
                end
         | 
| 85 | 
            +
             | 
| 86 | 
            +
                class BitwiseShiftRight < InfixOperation
         | 
| 87 | 
            +
                  def initialize(left, right)
         | 
| 88 | 
            +
                    super(:>>, left, right)
         | 
| 89 | 
            +
                  end
         | 
| 90 | 
            +
                end
         | 
| 91 | 
            +
              end
         | 
| 92 | 
            +
            end
         | 
| @@ -0,0 +1,37 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class InsertStatement < Arel::Nodes::Node
         | 
| 6 | 
            +
                  attr_accessor :relation, :columns, :values, :select
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  def initialize
         | 
| 9 | 
            +
                    super()
         | 
| 10 | 
            +
                    @relation = nil
         | 
| 11 | 
            +
                    @columns  = []
         | 
| 12 | 
            +
                    @values   = nil
         | 
| 13 | 
            +
                    @select   = nil
         | 
| 14 | 
            +
                  end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                  def initialize_copy(other)
         | 
| 17 | 
            +
                    super
         | 
| 18 | 
            +
                    @columns = @columns.clone
         | 
| 19 | 
            +
                    @values =  @values.clone if @values
         | 
| 20 | 
            +
                    @select =  @select.clone if @select
         | 
| 21 | 
            +
                  end
         | 
| 22 | 
            +
             | 
| 23 | 
            +
                  def hash
         | 
| 24 | 
            +
                    [@relation, @columns, @values, @select].hash
         | 
| 25 | 
            +
                  end
         | 
| 26 | 
            +
             | 
| 27 | 
            +
                  def eql?(other)
         | 
| 28 | 
            +
                    self.class == other.class &&
         | 
| 29 | 
            +
                      self.relation == other.relation &&
         | 
| 30 | 
            +
                      self.columns == other.columns &&
         | 
| 31 | 
            +
                      self.select == other.select &&
         | 
| 32 | 
            +
                      self.values == other.values
         | 
| 33 | 
            +
                  end
         | 
| 34 | 
            +
                  alias :== :eql?
         | 
| 35 | 
            +
                end
         | 
| 36 | 
            +
              end
         | 
| 37 | 
            +
            end
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                ###
         | 
| 6 | 
            +
                # Class that represents a join source
         | 
| 7 | 
            +
                #
         | 
| 8 | 
            +
                #   https://www.sqlite.org/syntaxdiagrams.html#join-source
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                class JoinSource < Arel::Nodes::Binary
         | 
| 11 | 
            +
                  def initialize(single_source, joinop = [])
         | 
| 12 | 
            +
                    super
         | 
| 13 | 
            +
                  end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                  def empty?
         | 
| 16 | 
            +
                    !left && right.empty?
         | 
| 17 | 
            +
                  end
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
              end
         | 
| 20 | 
            +
            end
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class Matches < Binary
         | 
| 6 | 
            +
                  attr_reader :escape
         | 
| 7 | 
            +
                  attr_accessor :case_sensitive
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def initialize(left, right, escape = nil, case_sensitive = false)
         | 
| 10 | 
            +
                    super(left, right)
         | 
| 11 | 
            +
                    @escape = escape && Nodes.build_quoted(escape)
         | 
| 12 | 
            +
                    @case_sensitive = case_sensitive
         | 
| 13 | 
            +
                  end
         | 
| 14 | 
            +
                end
         | 
| 15 | 
            +
             | 
| 16 | 
            +
                class DoesNotMatch < Matches; end
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
            end
         | 
| @@ -0,0 +1,23 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class NamedFunction < Arel::Nodes::Function
         | 
| 6 | 
            +
                  attr_accessor :name
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  def initialize(name, expr, aliaz = nil)
         | 
| 9 | 
            +
                    super(expr, aliaz)
         | 
| 10 | 
            +
                    @name = name
         | 
| 11 | 
            +
                  end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                  def hash
         | 
| 14 | 
            +
                    super ^ @name.hash
         | 
| 15 | 
            +
                  end
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                  def eql?(other)
         | 
| 18 | 
            +
                    super && self.name == other.name
         | 
| 19 | 
            +
                  end
         | 
| 20 | 
            +
                  alias :== :eql?
         | 
| 21 | 
            +
                end
         | 
| 22 | 
            +
              end
         | 
| 23 | 
            +
            end
         | 
| @@ -0,0 +1,51 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                ###
         | 
| 6 | 
            +
                # Abstract base class for all AST nodes
         | 
| 7 | 
            +
                class Node
         | 
| 8 | 
            +
                  include Arel::FactoryMethods
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  ###
         | 
| 11 | 
            +
                  # Factory method to create a Nodes::Not node that has the recipient of
         | 
| 12 | 
            +
                  # the caller as a child.
         | 
| 13 | 
            +
                  def not
         | 
| 14 | 
            +
                    Nodes::Not.new self
         | 
| 15 | 
            +
                  end
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                  ###
         | 
| 18 | 
            +
                  # Factory method to create a Nodes::Grouping node that has an Nodes::Or
         | 
| 19 | 
            +
                  # node as a child.
         | 
| 20 | 
            +
                  def or(right)
         | 
| 21 | 
            +
                    Nodes::Grouping.new Nodes::Or.new(self, right)
         | 
| 22 | 
            +
                  end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                  ###
         | 
| 25 | 
            +
                  # Factory method to create an Nodes::And node.
         | 
| 26 | 
            +
                  def and(right)
         | 
| 27 | 
            +
                    Nodes::And.new [self, right]
         | 
| 28 | 
            +
                  end
         | 
| 29 | 
            +
             | 
| 30 | 
            +
                  def invert
         | 
| 31 | 
            +
                    Arel::Nodes::Not.new(self)
         | 
| 32 | 
            +
                  end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                  # FIXME: this method should go away.  I don't like people calling
         | 
| 35 | 
            +
                  # to_sql on non-head nodes.  This forces us to walk the AST until we
         | 
| 36 | 
            +
                  # can find a node that has a "relation" member.
         | 
| 37 | 
            +
                  #
         | 
| 38 | 
            +
                  # Maybe we should just use `Table.engine`?  :'(
         | 
| 39 | 
            +
                  def to_sql(engine = Table.engine)
         | 
| 40 | 
            +
                    collector = Arel::Collectors::SQLString.new
         | 
| 41 | 
            +
                    collector = engine.connection.visitor.accept self, collector
         | 
| 42 | 
            +
                    collector.value
         | 
| 43 | 
            +
                  end
         | 
| 44 | 
            +
             | 
| 45 | 
            +
                  def fetch_attribute
         | 
| 46 | 
            +
                  end
         | 
| 47 | 
            +
             | 
| 48 | 
            +
                  def equality?; false; end
         | 
| 49 | 
            +
                end
         | 
| 50 | 
            +
              end
         | 
| 51 | 
            +
            end
         | 
| @@ -0,0 +1,13 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class NodeExpression < Arel::Nodes::Node
         | 
| 6 | 
            +
                  include Arel::Expressions
         | 
| 7 | 
            +
                  include Arel::Predications
         | 
| 8 | 
            +
                  include Arel::AliasPredication
         | 
| 9 | 
            +
                  include Arel::OrderPredications
         | 
| 10 | 
            +
                  include Arel::Math
         | 
| 11 | 
            +
                end
         | 
| 12 | 
            +
              end
         | 
| 13 | 
            +
            end
         | 
| @@ -0,0 +1,27 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class Ordering < Unary
         | 
| 6 | 
            +
                  def nulls_first
         | 
| 7 | 
            +
                    NullsFirst.new(self)
         | 
| 8 | 
            +
                  end
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  def nulls_last
         | 
| 11 | 
            +
                    NullsLast.new(self)
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
                end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                class NullsFirst < Ordering
         | 
| 16 | 
            +
                  def reverse
         | 
| 17 | 
            +
                    NullsLast.new(expr.reverse)
         | 
| 18 | 
            +
                  end
         | 
| 19 | 
            +
                end
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                class NullsLast < Ordering
         | 
| 22 | 
            +
                  def reverse
         | 
| 23 | 
            +
                    NullsFirst.new(expr.reverse)
         | 
| 24 | 
            +
                  end
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
            end
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class Regexp < Binary
         | 
| 6 | 
            +
                  attr_accessor :case_sensitive
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  def initialize(left, right, case_sensitive = true)
         | 
| 9 | 
            +
                    super(left, right)
         | 
| 10 | 
            +
                    @case_sensitive = case_sensitive
         | 
| 11 | 
            +
                  end
         | 
| 12 | 
            +
                end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                class NotRegexp < Regexp; end
         | 
| 15 | 
            +
              end
         | 
| 16 | 
            +
            end
         | 
| @@ -0,0 +1,67 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class SelectCore < Arel::Nodes::Node
         | 
| 6 | 
            +
                  attr_accessor :projections, :wheres, :groups, :windows, :comment
         | 
| 7 | 
            +
                  attr_accessor :havings, :source, :set_quantifier, :optimizer_hints
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def initialize
         | 
| 10 | 
            +
                    super()
         | 
| 11 | 
            +
                    @source = JoinSource.new nil
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                    # https://ronsavage.github.io/SQL/sql-92.bnf.html#set%20quantifier
         | 
| 14 | 
            +
                    @set_quantifier  = nil
         | 
| 15 | 
            +
                    @optimizer_hints = nil
         | 
| 16 | 
            +
                    @projections     = []
         | 
| 17 | 
            +
                    @wheres          = []
         | 
| 18 | 
            +
                    @groups          = []
         | 
| 19 | 
            +
                    @havings         = []
         | 
| 20 | 
            +
                    @windows         = []
         | 
| 21 | 
            +
                    @comment         = nil
         | 
| 22 | 
            +
                  end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                  def from
         | 
| 25 | 
            +
                    @source.left
         | 
| 26 | 
            +
                  end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
                  def from=(value)
         | 
| 29 | 
            +
                    @source.left = value
         | 
| 30 | 
            +
                  end
         | 
| 31 | 
            +
             | 
| 32 | 
            +
                  alias :froms= :from=
         | 
| 33 | 
            +
                  alias :froms :from
         | 
| 34 | 
            +
             | 
| 35 | 
            +
                  def initialize_copy(other)
         | 
| 36 | 
            +
                    super
         | 
| 37 | 
            +
                    @source      = @source.clone if @source
         | 
| 38 | 
            +
                    @projections = @projections.clone
         | 
| 39 | 
            +
                    @wheres      = @wheres.clone
         | 
| 40 | 
            +
                    @groups      = @groups.clone
         | 
| 41 | 
            +
                    @havings     = @havings.clone
         | 
| 42 | 
            +
                    @windows     = @windows.clone
         | 
| 43 | 
            +
                  end
         | 
| 44 | 
            +
             | 
| 45 | 
            +
                  def hash
         | 
| 46 | 
            +
                    [
         | 
| 47 | 
            +
                      @source, @set_quantifier, @projections, @optimizer_hints,
         | 
| 48 | 
            +
                      @wheres, @groups, @havings, @windows, @comment
         | 
| 49 | 
            +
                    ].hash
         | 
| 50 | 
            +
                  end
         | 
| 51 | 
            +
             | 
| 52 | 
            +
                  def eql?(other)
         | 
| 53 | 
            +
                    self.class == other.class &&
         | 
| 54 | 
            +
                      self.source == other.source &&
         | 
| 55 | 
            +
                      self.set_quantifier == other.set_quantifier &&
         | 
| 56 | 
            +
                      self.optimizer_hints == other.optimizer_hints &&
         | 
| 57 | 
            +
                      self.projections == other.projections &&
         | 
| 58 | 
            +
                      self.wheres == other.wheres &&
         | 
| 59 | 
            +
                      self.groups == other.groups &&
         | 
| 60 | 
            +
                      self.havings == other.havings &&
         | 
| 61 | 
            +
                      self.windows == other.windows &&
         | 
| 62 | 
            +
                      self.comment == other.comment
         | 
| 63 | 
            +
                  end
         | 
| 64 | 
            +
                  alias :== :eql?
         | 
| 65 | 
            +
                end
         | 
| 66 | 
            +
              end
         | 
| 67 | 
            +
            end
         | 
| @@ -0,0 +1,41 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class SelectStatement < Arel::Nodes::NodeExpression
         | 
| 6 | 
            +
                  attr_reader :cores
         | 
| 7 | 
            +
                  attr_accessor :limit, :orders, :lock, :offset, :with
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def initialize(cores = [SelectCore.new])
         | 
| 10 | 
            +
                    super()
         | 
| 11 | 
            +
                    @cores          = cores
         | 
| 12 | 
            +
                    @orders         = []
         | 
| 13 | 
            +
                    @limit          = nil
         | 
| 14 | 
            +
                    @lock           = nil
         | 
| 15 | 
            +
                    @offset         = nil
         | 
| 16 | 
            +
                    @with           = nil
         | 
| 17 | 
            +
                  end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
                  def initialize_copy(other)
         | 
| 20 | 
            +
                    super
         | 
| 21 | 
            +
                    @cores  = @cores.map { |x| x.clone }
         | 
| 22 | 
            +
                    @orders = @orders.map { |x| x.clone }
         | 
| 23 | 
            +
                  end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
                  def hash
         | 
| 26 | 
            +
                    [@cores, @orders, @limit, @lock, @offset, @with].hash
         | 
| 27 | 
            +
                  end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
                  def eql?(other)
         | 
| 30 | 
            +
                    self.class == other.class &&
         | 
| 31 | 
            +
                      self.cores == other.cores &&
         | 
| 32 | 
            +
                      self.orders == other.orders &&
         | 
| 33 | 
            +
                      self.limit == other.limit &&
         | 
| 34 | 
            +
                      self.lock == other.lock &&
         | 
| 35 | 
            +
                      self.offset == other.offset &&
         | 
| 36 | 
            +
                      self.with == other.with
         | 
| 37 | 
            +
                  end
         | 
| 38 | 
            +
                  alias :== :eql?
         | 
| 39 | 
            +
                end
         | 
| 40 | 
            +
              end
         | 
| 41 | 
            +
            end
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class SqlLiteral < String
         | 
| 6 | 
            +
                  include Arel::Expressions
         | 
| 7 | 
            +
                  include Arel::Predications
         | 
| 8 | 
            +
                  include Arel::AliasPredication
         | 
| 9 | 
            +
                  include Arel::OrderPredications
         | 
| 10 | 
            +
             | 
| 11 | 
            +
                  def encode_with(coder)
         | 
| 12 | 
            +
                    coder.scalar = self.to_s
         | 
| 13 | 
            +
                  end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                  def fetch_attribute
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
                end
         | 
| 18 | 
            +
              end
         | 
| 19 | 
            +
            end
         | 
| @@ -0,0 +1,31 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class TableAlias < Arel::Nodes::Binary
         | 
| 6 | 
            +
                  alias :name :right
         | 
| 7 | 
            +
                  alias :relation :left
         | 
| 8 | 
            +
                  alias :table_alias :name
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  def [](name)
         | 
| 11 | 
            +
                    relation.is_a?(Table) ? relation[name, self] : Attribute.new(self, name)
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                  def table_name
         | 
| 15 | 
            +
                    relation.respond_to?(:name) ? relation.name : name
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                  def type_cast_for_database(attr_name, value)
         | 
| 19 | 
            +
                    relation.type_cast_for_database(attr_name, value)
         | 
| 20 | 
            +
                  end
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                  def type_for_attribute(name)
         | 
| 23 | 
            +
                    relation.type_for_attribute(name)
         | 
| 24 | 
            +
                  end
         | 
| 25 | 
            +
             | 
| 26 | 
            +
                  def able_to_type_cast?
         | 
| 27 | 
            +
                    relation.respond_to?(:able_to_type_cast?) && relation.able_to_type_cast?
         | 
| 28 | 
            +
                  end
         | 
| 29 | 
            +
                end
         | 
| 30 | 
            +
              end
         | 
| 31 | 
            +
            end
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class Distinct < Arel::Nodes::NodeExpression
         | 
| 6 | 
            +
                  def hash
         | 
| 7 | 
            +
                    self.class.hash
         | 
| 8 | 
            +
                  end
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  def eql?(other)
         | 
| 11 | 
            +
                    self.class == other.class
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
                  alias :== :eql?
         | 
| 14 | 
            +
                end
         | 
| 15 | 
            +
              end
         | 
| 16 | 
            +
            end
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class True < Arel::Nodes::NodeExpression
         | 
| 6 | 
            +
                  def hash
         | 
| 7 | 
            +
                    self.class.hash
         | 
| 8 | 
            +
                  end
         | 
| 9 | 
            +
             | 
| 10 | 
            +
                  def eql?(other)
         | 
| 11 | 
            +
                    self.class == other.class
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
                  alias :== :eql?
         | 
| 14 | 
            +
                end
         | 
| 15 | 
            +
              end
         | 
| 16 | 
            +
            end
         | 
| @@ -0,0 +1,44 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class Unary < Arel::Nodes::NodeExpression
         | 
| 6 | 
            +
                  attr_accessor :expr
         | 
| 7 | 
            +
                  alias :value :expr
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def initialize(expr)
         | 
| 10 | 
            +
                    super()
         | 
| 11 | 
            +
                    @expr = expr
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                  def hash
         | 
| 15 | 
            +
                    @expr.hash
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                  def eql?(other)
         | 
| 19 | 
            +
                    self.class == other.class &&
         | 
| 20 | 
            +
                      self.expr == other.expr
         | 
| 21 | 
            +
                  end
         | 
| 22 | 
            +
                  alias :== :eql?
         | 
| 23 | 
            +
                end
         | 
| 24 | 
            +
             | 
| 25 | 
            +
                %w{
         | 
| 26 | 
            +
                  Bin
         | 
| 27 | 
            +
                  Cube
         | 
| 28 | 
            +
                  DistinctOn
         | 
| 29 | 
            +
                  Group
         | 
| 30 | 
            +
                  GroupingElement
         | 
| 31 | 
            +
                  GroupingSet
         | 
| 32 | 
            +
                  Lateral
         | 
| 33 | 
            +
                  Limit
         | 
| 34 | 
            +
                  Lock
         | 
| 35 | 
            +
                  Not
         | 
| 36 | 
            +
                  Offset
         | 
| 37 | 
            +
                  On
         | 
| 38 | 
            +
                  OptimizerHints
         | 
| 39 | 
            +
                  RollUp
         | 
| 40 | 
            +
                }.each do |name|
         | 
| 41 | 
            +
                  const_set(name, Class.new(Unary))
         | 
| 42 | 
            +
                end
         | 
| 43 | 
            +
              end
         | 
| 44 | 
            +
            end
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class UnaryOperation < Unary
         | 
| 6 | 
            +
                  attr_reader :operator
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  def initialize(operator, operand)
         | 
| 9 | 
            +
                    super(operand)
         | 
| 10 | 
            +
                    @operator = operator
         | 
| 11 | 
            +
                  end
         | 
| 12 | 
            +
                end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                class BitwiseNot < UnaryOperation
         | 
| 15 | 
            +
                  def initialize(operand)
         | 
| 16 | 
            +
                    super(:~, operand)
         | 
| 17 | 
            +
                  end
         | 
| 18 | 
            +
                end
         | 
| 19 | 
            +
              end
         | 
| 20 | 
            +
            end
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module Arel # :nodoc: all
         | 
| 4 | 
            +
              module Nodes
         | 
| 5 | 
            +
                class UnqualifiedColumn < Arel::Nodes::Unary
         | 
| 6 | 
            +
                  alias :attribute :expr
         | 
| 7 | 
            +
                  alias :attribute= :expr=
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def relation
         | 
| 10 | 
            +
                    @expr.relation
         | 
| 11 | 
            +
                  end
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                  def column
         | 
| 14 | 
            +
                    @expr.column
         | 
| 15 | 
            +
                  end
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                  def name
         | 
| 18 | 
            +
                    @expr.name
         | 
| 19 | 
            +
                  end
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
            end
         | 
| @@ -0,0 +1,41 @@ | |
| 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, :orders, :limit, :offset, :key
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  def initialize
         | 
| 9 | 
            +
                    @relation = nil
         | 
| 10 | 
            +
                    @wheres   = []
         | 
| 11 | 
            +
                    @values   = []
         | 
| 12 | 
            +
                    @orders   = []
         | 
| 13 | 
            +
                    @limit    = nil
         | 
| 14 | 
            +
                    @offset   = nil
         | 
| 15 | 
            +
                    @key      = nil
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                  def initialize_copy(other)
         | 
| 19 | 
            +
                    super
         | 
| 20 | 
            +
                    @wheres = @wheres.clone
         | 
| 21 | 
            +
                    @values = @values.clone
         | 
| 22 | 
            +
                  end
         | 
| 23 | 
            +
             | 
| 24 | 
            +
                  def hash
         | 
| 25 | 
            +
                    [@relation, @wheres, @values, @orders, @limit, @offset, @key].hash
         | 
| 26 | 
            +
                  end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
                  def eql?(other)
         | 
| 29 | 
            +
                    self.class == other.class &&
         | 
| 30 | 
            +
                      self.relation == other.relation &&
         | 
| 31 | 
            +
                      self.wheres == other.wheres &&
         | 
| 32 | 
            +
                      self.values == other.values &&
         | 
| 33 | 
            +
                      self.orders == other.orders &&
         | 
| 34 | 
            +
                      self.limit == other.limit &&
         | 
| 35 | 
            +
                      self.offset == other.offset &&
         | 
| 36 | 
            +
                      self.key == other.key
         | 
| 37 | 
            +
                  end
         | 
| 38 | 
            +
                  alias :== :eql?
         | 
| 39 | 
            +
                end
         | 
| 40 | 
            +
              end
         | 
| 41 | 
            +
            end
         |