ibm_db 3.0.4 → 5.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES +8 -1
- data/LICENSE +1 -1
- data/ParameterizedQueries README +6 -6
- data/README +38 -55
- data/ext/Makefile +266 -0
- data/ext/extconf.rb +34 -3
- data/ext/gil_release_version +3 -0
- data/ext/ibm_db.c +106 -111
- data/ext/ibm_db.o +0 -0
- data/ext/ibm_db.so +0 -0
- data/ext/mkmf.log +103 -0
- data/ext/ruby_ibm_db_cli.o +0 -0
- data/ext/unicode_support_version +3 -0
- data/lib/active_record/connection_adapters/ibm_db_adapter.rb +911 -527
- data/lib/active_record/connection_adapters/ibmdb_adapter.rb +4 -1
- data/test/active_record/connection_adapters/fake_adapter.rb +8 -5
- data/test/cases/adapter_test.rb +148 -58
- data/test/cases/adapters/mysql2/active_schema_test.rb +193 -0
- data/test/cases/adapters/mysql2/bind_parameter_test.rb +50 -0
- data/test/cases/adapters/mysql2/boolean_test.rb +100 -0
- data/test/cases/adapters/mysql2/case_sensitivity_test.rb +63 -0
- data/test/cases/adapters/mysql2/charset_collation_test.rb +54 -0
- data/test/cases/adapters/mysql2/connection_test.rb +210 -0
- data/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +45 -0
- data/test/cases/adapters/mysql2/enum_test.rb +26 -0
- data/test/cases/adapters/mysql2/explain_test.rb +21 -0
- data/test/cases/adapters/mysql2/json_test.rb +195 -0
- data/test/cases/adapters/mysql2/mysql2_adapter_test.rb +83 -0
- data/test/cases/adapters/mysql2/reserved_word_test.rb +152 -0
- data/test/cases/adapters/mysql2/schema_migrations_test.rb +59 -0
- data/test/cases/adapters/mysql2/schema_test.rb +126 -0
- data/test/cases/adapters/mysql2/sp_test.rb +36 -0
- data/test/cases/adapters/mysql2/sql_types_test.rb +14 -0
- data/test/cases/adapters/mysql2/table_options_test.rb +42 -0
- data/test/cases/adapters/mysql2/unsigned_type_test.rb +66 -0
- data/test/cases/adapters/postgresql/active_schema_test.rb +98 -0
- data/test/cases/adapters/postgresql/array_test.rb +339 -0
- data/test/cases/adapters/postgresql/bit_string_test.rb +82 -0
- data/test/cases/adapters/postgresql/bytea_test.rb +134 -0
- data/test/cases/adapters/postgresql/case_insensitive_test.rb +26 -0
- data/test/cases/adapters/postgresql/change_schema_test.rb +38 -0
- data/test/cases/adapters/postgresql/cidr_test.rb +25 -0
- data/test/cases/adapters/postgresql/citext_test.rb +78 -0
- data/test/cases/adapters/postgresql/collation_test.rb +53 -0
- data/test/cases/adapters/postgresql/composite_test.rb +132 -0
- data/test/cases/adapters/postgresql/connection_test.rb +257 -0
- data/test/cases/adapters/postgresql/datatype_test.rb +92 -0
- data/test/cases/adapters/postgresql/domain_test.rb +47 -0
- data/test/cases/adapters/postgresql/enum_test.rb +91 -0
- data/test/cases/adapters/postgresql/explain_test.rb +20 -0
- data/test/cases/adapters/postgresql/extension_migration_test.rb +63 -0
- data/test/cases/adapters/postgresql/full_text_test.rb +44 -0
- data/test/cases/adapters/postgresql/geometric_test.rb +378 -0
- data/test/cases/adapters/postgresql/hstore_test.rb +382 -0
- data/test/cases/adapters/postgresql/infinity_test.rb +69 -0
- data/test/cases/adapters/postgresql/integer_test.rb +25 -0
- data/test/cases/adapters/postgresql/json_test.rb +237 -0
- data/test/cases/adapters/postgresql/ltree_test.rb +53 -0
- data/test/cases/adapters/postgresql/money_test.rb +96 -0
- data/test/cases/adapters/postgresql/network_test.rb +94 -0
- data/test/cases/adapters/postgresql/numbers_test.rb +49 -0
- data/test/cases/adapters/postgresql/postgresql_adapter_test.rb +405 -0
- data/test/cases/adapters/postgresql/prepared_statements_test.rb +22 -0
- data/test/cases/adapters/postgresql/quoting_test.rb +44 -0
- data/test/cases/adapters/postgresql/range_test.rb +343 -0
- data/test/cases/adapters/postgresql/referential_integrity_test.rb +111 -0
- data/test/cases/adapters/postgresql/rename_table_test.rb +34 -0
- data/test/cases/adapters/postgresql/schema_authorization_test.rb +119 -0
- data/test/cases/adapters/postgresql/schema_test.rb +597 -0
- data/test/cases/adapters/postgresql/serial_test.rb +154 -0
- data/test/cases/adapters/postgresql/statement_pool_test.rb +41 -0
- data/test/cases/adapters/postgresql/timestamp_test.rb +90 -0
- data/test/cases/adapters/postgresql/type_lookup_test.rb +33 -0
- data/test/cases/adapters/postgresql/utils_test.rb +62 -0
- data/test/cases/adapters/postgresql/uuid_test.rb +294 -0
- data/test/cases/adapters/postgresql/xml_test.rb +54 -0
- data/test/cases/adapters/sqlite3/collation_test.rb +53 -0
- data/test/cases/adapters/sqlite3/copy_table_test.rb +98 -0
- data/test/cases/adapters/sqlite3/explain_test.rb +21 -0
- data/test/cases/adapters/sqlite3/quoting_test.rb +101 -0
- data/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +441 -0
- data/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +24 -0
- data/test/cases/adapters/sqlite3/statement_pool_test.rb +20 -0
- data/test/cases/aggregations_test.rb +11 -1
- data/test/cases/ar_schema_test.rb +35 -50
- data/test/cases/associations/association_scope_test.rb +1 -6
- data/test/cases/associations/belongs_to_associations_test.rb +122 -10
- data/test/cases/associations/bidirectional_destroy_dependencies_test.rb +41 -0
- data/test/cases/associations/callbacks_test.rb +5 -7
- data/test/cases/associations/cascaded_eager_loading_test.rb +1 -1
- data/test/cases/associations/eager_load_nested_include_test.rb +1 -3
- data/test/cases/associations/eager_test.rb +176 -73
- data/test/cases/associations/extension_test.rb +7 -2
- data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +104 -32
- data/test/cases/associations/has_many_associations_test.rb +382 -43
- data/test/cases/associations/has_many_through_associations_test.rb +108 -41
- data/test/cases/associations/has_one_associations_test.rb +105 -8
- data/test/cases/associations/has_one_through_associations_test.rb +6 -3
- data/test/cases/associations/inner_join_association_test.rb +3 -3
- data/test/cases/associations/inverse_associations_test.rb +51 -11
- data/test/cases/associations/join_model_test.rb +59 -36
- data/test/cases/associations/left_outer_join_association_test.rb +88 -0
- data/test/cases/associations/nested_through_associations_test.rb +2 -2
- data/test/cases/associations/required_test.rb +25 -5
- data/test/cases/associations_test.rb +39 -34
- data/test/cases/attribute_decorators_test.rb +9 -8
- data/test/cases/attribute_methods/read_test.rb +5 -5
- data/test/cases/attribute_methods_test.rb +97 -40
- data/test/cases/attribute_set_test.rb +74 -4
- data/test/cases/attribute_test.rb +84 -18
- data/test/cases/attributes_test.rb +151 -34
- data/test/cases/autosave_association_test.rb +149 -36
- data/test/cases/base_test.rb +311 -236
- data/test/cases/batches_test.rb +299 -22
- data/test/cases/binary_test.rb +2 -10
- data/test/cases/bind_parameter_test.rb +76 -66
- data/test/cases/cache_key_test.rb +26 -0
- data/test/cases/calculations_test.rb +167 -15
- data/test/cases/callbacks_test.rb +161 -68
- data/test/cases/coders/json_test.rb +15 -0
- data/test/cases/collection_cache_key_test.rb +115 -0
- data/test/cases/column_definition_test.rb +26 -57
- data/test/cases/comment_test.rb +145 -0
- data/test/cases/connection_adapters/adapter_leasing_test.rb +5 -3
- data/test/cases/connection_adapters/connection_handler_test.rb +128 -21
- data/test/cases/connection_adapters/connection_specification_test.rb +1 -1
- data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +0 -38
- data/test/cases/connection_adapters/mysql_type_lookup_test.rb +5 -1
- data/test/cases/connection_adapters/schema_cache_test.rb +8 -3
- data/test/cases/connection_adapters/type_lookup_test.rb +15 -7
- data/test/cases/connection_management_test.rb +46 -56
- data/test/cases/connection_pool_test.rb +195 -20
- data/test/cases/connection_specification/resolver_test.rb +15 -0
- data/test/cases/counter_cache_test.rb +10 -5
- data/test/cases/custom_locking_test.rb +1 -1
- data/test/cases/database_statements_test.rb +18 -3
- data/test/cases/{invalid_date_test.rb → date_test.rb} +13 -1
- data/test/cases/date_time_precision_test.rb +107 -0
- data/test/cases/defaults_test.rb +85 -89
- data/test/cases/dirty_test.rb +32 -44
- data/test/cases/disconnected_test.rb +4 -2
- data/test/cases/enum_test.rb +178 -24
- data/test/cases/errors_test.rb +16 -0
- data/test/cases/explain_test.rb +32 -21
- data/test/cases/finder_test.rb +279 -151
- data/test/cases/fixture_set/file_test.rb +18 -0
- data/test/cases/fixtures_test.rb +123 -32
- data/test/cases/forbidden_attributes_protection_test.rb +69 -3
- data/test/cases/helper.rb +10 -16
- data/test/cases/hot_compatibility_test.rb +89 -1
- data/test/cases/inheritance_test.rb +284 -53
- data/test/cases/integration_test.rb +23 -7
- data/test/cases/invalid_connection_test.rb +4 -2
- data/test/cases/invertible_migration_test.rb +124 -32
- data/test/cases/json_serialization_test.rb +11 -2
- data/test/cases/locking_test.rb +22 -6
- data/test/cases/log_subscriber_test.rb +106 -17
- data/test/cases/migration/change_schema_test.rb +118 -132
- data/test/cases/migration/change_table_test.rb +34 -2
- data/test/cases/migration/column_attributes_test.rb +7 -23
- data/test/cases/migration/column_positioning_test.rb +8 -8
- data/test/cases/migration/columns_test.rb +17 -11
- data/test/cases/migration/command_recorder_test.rb +47 -2
- data/test/cases/migration/compatibility_test.rb +118 -0
- data/test/cases/migration/create_join_table_test.rb +21 -12
- data/test/cases/migration/foreign_key_test.rb +68 -66
- data/test/cases/migration/index_test.rb +14 -12
- data/test/cases/migration/logger_test.rb +1 -1
- data/test/cases/migration/pending_migrations_test.rb +0 -1
- data/test/cases/migration/references_foreign_key_test.rb +114 -107
- data/test/cases/migration/references_index_test.rb +4 -4
- data/test/cases/migration/references_statements_test.rb +26 -6
- data/test/cases/migration/rename_table_test.rb +25 -25
- data/test/cases/migration_test.rb +279 -81
- data/test/cases/migrator_test.rb +91 -8
- data/test/cases/mixin_test.rb +0 -2
- data/test/cases/modules_test.rb +3 -4
- data/test/cases/multiparameter_attributes_test.rb +24 -2
- data/test/cases/multiple_db_test.rb +18 -11
- data/test/cases/nested_attributes_test.rb +74 -33
- data/test/cases/persistence_test.rb +102 -10
- data/test/cases/pooled_connections_test.rb +3 -3
- data/test/cases/primary_keys_test.rb +170 -31
- data/test/cases/query_cache_test.rb +216 -96
- data/test/cases/quoting_test.rb +65 -19
- data/test/cases/readonly_test.rb +2 -1
- data/test/cases/reflection_test.rb +77 -22
- data/test/cases/relation/delegation_test.rb +3 -8
- data/test/cases/relation/merging_test.rb +10 -14
- data/test/cases/relation/mutation_test.rb +42 -24
- data/test/cases/relation/or_test.rb +92 -0
- data/test/cases/relation/predicate_builder_test.rb +4 -2
- data/test/cases/relation/record_fetch_warning_test.rb +40 -0
- data/test/cases/relation/where_chain_test.rb +23 -99
- data/test/cases/relation/where_clause_test.rb +182 -0
- data/test/cases/relation/where_test.rb +45 -23
- data/test/cases/relation_test.rb +89 -58
- data/test/cases/relations_test.rb +249 -38
- data/test/cases/result_test.rb +10 -0
- data/test/cases/sanitize_test.rb +108 -15
- data/test/cases/schema_dumper_test.rb +119 -125
- data/test/cases/schema_loading_test.rb +52 -0
- data/test/cases/scoping/default_scoping_test.rb +113 -39
- data/test/cases/scoping/named_scoping_test.rb +46 -9
- data/test/cases/scoping/relation_scoping_test.rb +47 -4
- data/test/cases/secure_token_test.rb +32 -0
- data/test/cases/serialization_test.rb +1 -1
- data/test/cases/serialized_attribute_test.rb +93 -6
- data/test/cases/statement_cache_test.rb +38 -0
- data/test/cases/store_test.rb +2 -1
- data/test/cases/suppressor_test.rb +63 -0
- data/test/cases/tasks/database_tasks_test.rb +74 -8
- data/test/cases/tasks/mysql_rake_test.rb +143 -109
- data/test/cases/tasks/postgresql_rake_test.rb +71 -12
- data/test/cases/tasks/sqlite_rake_test.rb +30 -3
- data/test/cases/test_case.rb +28 -20
- data/test/cases/test_fixtures_test.rb +36 -0
- data/test/cases/time_precision_test.rb +103 -0
- data/test/cases/timestamp_test.rb +47 -14
- data/test/cases/touch_later_test.rb +121 -0
- data/test/cases/transaction_callbacks_test.rb +128 -62
- data/test/cases/transaction_isolation_test.rb +2 -2
- data/test/cases/transactions_test.rb +61 -43
- data/test/cases/type/adapter_specific_registry_test.rb +133 -0
- data/test/cases/type/date_time_test.rb +14 -0
- data/test/cases/type/integer_test.rb +2 -96
- data/test/cases/type/string_test.rb +0 -14
- data/test/cases/type_test.rb +39 -0
- data/test/cases/types_test.rb +1 -118
- data/test/cases/unconnected_test.rb +1 -1
- data/test/cases/validations/absence_validation_test.rb +73 -0
- data/test/cases/validations/association_validation_test.rb +13 -2
- data/test/cases/validations/i18n_validation_test.rb +6 -10
- data/test/cases/validations/length_validation_test.rb +62 -30
- data/test/cases/validations/presence_validation_test.rb +36 -1
- data/test/cases/validations/uniqueness_validation_test.rb +150 -36
- data/test/cases/validations_repair_helper.rb +2 -6
- data/test/cases/validations_test.rb +36 -7
- data/test/cases/view_test.rb +108 -5
- data/test/cases/yaml_serialization_test.rb +36 -1
- data/test/config.example.yml +97 -0
- data/test/fixtures/bad_posts.yml +9 -0
- data/test/fixtures/books.yml +20 -0
- data/test/fixtures/content.yml +3 -0
- data/test/fixtures/content_positions.yml +3 -0
- data/test/fixtures/dead_parrots.yml +5 -0
- data/test/fixtures/live_parrots.yml +4 -0
- data/test/fixtures/naked/yml/parrots.yml +2 -0
- data/test/fixtures/naked/yml/trees.yml +3 -0
- data/test/fixtures/nodes.yml +29 -0
- data/test/fixtures/other_comments.yml +6 -0
- data/test/fixtures/other_dogs.yml +2 -0
- data/test/fixtures/other_posts.yml +7 -0
- data/test/fixtures/price_estimates.yml +10 -1
- data/test/fixtures/trees.yml +3 -0
- data/test/migrations/10_urban/9_add_expressions.rb +1 -1
- data/test/migrations/decimal/1_give_me_big_numbers.rb +1 -1
- data/test/migrations/magic/1_currencies_have_symbols.rb +1 -1
- data/test/migrations/missing/1000_people_have_middle_names.rb +2 -2
- data/test/migrations/missing/1_people_have_last_names.rb +2 -2
- data/test/migrations/missing/3_we_need_reminders.rb +2 -2
- data/test/migrations/missing/4_innocent_jointable.rb +2 -2
- data/test/migrations/rename/1_we_need_things.rb +2 -2
- data/test/migrations/rename/2_rename_things.rb +2 -2
- data/test/migrations/to_copy/1_people_have_hobbies.rb +1 -1
- data/test/migrations/to_copy/2_people_have_descriptions.rb +1 -1
- data/test/migrations/to_copy2/1_create_articles.rb +1 -1
- data/test/migrations/to_copy2/2_create_comments.rb +1 -1
- data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +1 -1
- data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +1 -1
- data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +1 -1
- data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +1 -1
- data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +1 -1
- data/test/migrations/valid/1_valid_people_have_last_names.rb +1 -1
- data/test/migrations/valid/2_we_need_reminders.rb +2 -2
- data/test/migrations/valid/3_innocent_jointable.rb +2 -2
- data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +1 -1
- data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +2 -2
- data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +2 -2
- data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +1 -1
- data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +1 -1
- data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +1 -1
- data/test/migrations/version_check/20131219224947_migration_version_check.rb +1 -1
- data/test/models/admin/randomly_named_c1.rb +6 -2
- data/test/models/aircraft.rb +1 -0
- data/test/models/author.rb +4 -7
- data/test/models/bird.rb +1 -1
- data/test/models/book.rb +5 -0
- data/test/models/bulb.rb +2 -1
- data/test/models/car.rb +3 -0
- data/test/models/cat.rb +10 -0
- data/test/models/chef.rb +5 -0
- data/test/models/club.rb +2 -0
- data/test/models/comment.rb +17 -5
- data/test/models/company.rb +7 -2
- data/test/models/company_in_module.rb +1 -1
- data/test/models/contact.rb +1 -1
- data/test/models/content.rb +40 -0
- data/test/models/customer.rb +8 -2
- data/test/models/developer.rb +22 -0
- data/test/models/face.rb +1 -1
- data/test/models/guitar.rb +4 -0
- data/test/models/hotel.rb +5 -0
- data/test/models/member.rb +1 -0
- data/test/models/member_detail.rb +4 -3
- data/test/models/mentor.rb +3 -0
- data/test/models/mocktail_designer.rb +2 -0
- data/test/models/node.rb +5 -0
- data/test/models/non_primary_key.rb +2 -0
- data/test/models/notification.rb +3 -0
- data/test/models/other_dog.rb +5 -0
- data/test/models/owner.rb +4 -1
- data/test/models/parrot.rb +6 -7
- data/test/models/person.rb +0 -1
- data/test/models/pet.rb +3 -0
- data/test/models/pet_treasure.rb +6 -0
- data/test/models/pirate.rb +3 -3
- data/test/models/post.rb +18 -9
- data/test/models/project.rb +11 -0
- data/test/models/randomly_named_c1.rb +1 -1
- data/test/models/recipe.rb +3 -0
- data/test/models/ship.rb +8 -2
- data/test/models/tag.rb +6 -0
- data/test/models/topic.rb +2 -8
- data/test/models/tree.rb +3 -0
- data/test/models/tuning_peg.rb +4 -0
- data/test/models/user.rb +14 -0
- data/test/models/uuid_item.rb +6 -0
- data/test/schema/mysql2_specific_schema.rb +33 -23
- data/test/schema/oracle_specific_schema.rb +1 -4
- data/test/schema/postgresql_specific_schema.rb +36 -124
- data/test/schema/schema.rb +183 -64
- data/test/schema/schema.rb.original +1057 -0
- data/test/schema/sqlite_specific_schema.rb +1 -5
- data/test/support/connection.rb +1 -0
- data/test/support/schema_dumping_helper.rb +1 -1
- data/test/support/yaml_compatibility_fixtures/rails_4_1.yml +22 -0
- data/test/support/yaml_compatibility_fixtures/rails_4_2_0.yml +182 -0
- metadata +145 -26
- data/test/cases/associations/deprecated_counter_cache_on_has_many_through_test.rb +0 -26
- data/test/cases/attribute_methods/serialization_test.rb +0 -29
- data/test/cases/migration/change_schema_test - Copy.rb +0 -448
- data/test/cases/migration/foreign_key_test - Changed.rb +0 -325
- data/test/cases/migration/table_and_index_test.rb +0 -24
- data/test/cases/relation/where_test2.rb +0 -36
- data/test/cases/type/decimal_test.rb +0 -51
- data/test/cases/type/unsigned_integer_test.rb +0 -18
- data/test/cases/xml_serialization_test.rb +0 -457
- data/test/fixtures/naked/csv/accounts.csv +0 -1
- data/test/schema/mysql_specific_schema.rb +0 -70
data/test/models/face.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
class Face < ActiveRecord::Base
|
2
2
|
belongs_to :man, :inverse_of => :face
|
3
3
|
belongs_to :polymorphic_man, :polymorphic => true, :inverse_of => :polymorphic_face
|
4
|
-
# Oracle identifier
|
4
|
+
# Oracle identifier length is limited to 30 bytes or less, `polymorphic` renamed `poly`
|
5
5
|
belongs_to :poly_man_without_inverse, :polymorphic => true
|
6
6
|
# These is a "broken" inverse_of for the purposes of testing
|
7
7
|
belongs_to :horrible_man, :class_name => 'Man', :inverse_of => :horrible_face
|
data/test/models/hotel.rb
CHANGED
@@ -3,4 +3,9 @@ class Hotel < ActiveRecord::Base
|
|
3
3
|
has_many :chefs, through: :departments
|
4
4
|
has_many :cake_designers, source_type: 'CakeDesigner', source: :employable, through: :chefs
|
5
5
|
has_many :drink_designers, source_type: 'DrinkDesigner', source: :employable, through: :chefs
|
6
|
+
|
7
|
+
has_many :chef_lists, as: :employable_list
|
8
|
+
has_many :mocktail_designers, through: :chef_lists, source: :employable, :source_type => "MocktailDesigner"
|
9
|
+
|
10
|
+
has_many :recipes, through: :chefs
|
6
11
|
end
|
data/test/models/member.rb
CHANGED
@@ -22,6 +22,7 @@ class Member < ActiveRecord::Base
|
|
22
22
|
has_many :organization_member_details_2, :through => :organization, :source => :member_details
|
23
23
|
|
24
24
|
has_one :club_category, :through => :club, :source => :category
|
25
|
+
has_one :general_club, -> { general }, through: :current_membership, source: :club
|
25
26
|
|
26
27
|
has_many :current_memberships, -> { where :favourite => true }
|
27
28
|
has_many :clubs, :through => :current_memberships
|
@@ -1,7 +1,8 @@
|
|
1
1
|
class MemberDetail < ActiveRecord::Base
|
2
|
-
belongs_to :member, :
|
2
|
+
belongs_to :member, inverse_of: false
|
3
3
|
belongs_to :organization
|
4
|
-
has_one :member_type, :
|
4
|
+
has_one :member_type, through: :member
|
5
|
+
has_one :membership, through: :member
|
5
6
|
|
6
|
-
has_many :organization_member_details, :
|
7
|
+
has_many :organization_member_details, through: :organization, source: :member_details
|
7
8
|
end
|
data/test/models/node.rb
ADDED
data/test/models/owner.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
class Owner < ActiveRecord::Base
|
2
2
|
self.primary_key = :owner_id
|
3
3
|
has_many :pets, -> { order 'pets.name desc' }
|
4
|
-
has_many :toys, :
|
4
|
+
has_many :toys, through: :pets
|
5
|
+
has_many :persons, through: :pets
|
5
6
|
|
6
7
|
belongs_to :last_pet, class_name: 'Pet'
|
7
8
|
scope :including_last_pet, -> {
|
@@ -17,6 +18,8 @@ class Owner < ActiveRecord::Base
|
|
17
18
|
|
18
19
|
after_commit :execute_blocks
|
19
20
|
|
21
|
+
accepts_nested_attributes_for :pets, allow_destroy: true
|
22
|
+
|
20
23
|
def blocks
|
21
24
|
@blocks ||= []
|
22
25
|
end
|
data/test/models/parrot.rb
CHANGED
@@ -11,7 +11,12 @@ class Parrot < ActiveRecord::Base
|
|
11
11
|
attr_accessor :cancel_save_from_callback
|
12
12
|
before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
|
13
13
|
def cancel_save_callback_method
|
14
|
-
|
14
|
+
throw(:abort)
|
15
|
+
end
|
16
|
+
|
17
|
+
before_update :increment_updated_count
|
18
|
+
def increment_updated_count
|
19
|
+
self.updated_count += 1
|
15
20
|
end
|
16
21
|
end
|
17
22
|
|
@@ -21,9 +26,3 @@ end
|
|
21
26
|
class DeadParrot < Parrot
|
22
27
|
belongs_to :killer, :class_name => 'Pirate', foreign_key: :killer_id
|
23
28
|
end
|
24
|
-
|
25
|
-
class FunkyParrot < Parrot
|
26
|
-
before_destroy do
|
27
|
-
raise "before_destroy was called"
|
28
|
-
end
|
29
|
-
end
|
data/test/models/person.rb
CHANGED
@@ -37,7 +37,6 @@ class Person < ActiveRecord::Base
|
|
37
37
|
has_many :essays, primary_key: "first_name", foreign_key: "writer_id"
|
38
38
|
|
39
39
|
scope :males, -> { where(:gender => 'M') }
|
40
|
-
scope :females, -> { where(:gender => 'F') }
|
41
40
|
end
|
42
41
|
|
43
42
|
class PersonWithDependentDestroyJobs < ActiveRecord::Base
|
data/test/models/pet.rb
CHANGED
@@ -4,6 +4,9 @@ class Pet < ActiveRecord::Base
|
|
4
4
|
self.primary_key = :pet_id
|
5
5
|
belongs_to :owner, :touch => true
|
6
6
|
has_many :toys
|
7
|
+
has_many :pet_treasures
|
8
|
+
has_many :treasures, through: :pet_treasures
|
9
|
+
has_many :persons, through: :treasures, source: :looter, source_type: 'Person'
|
7
10
|
|
8
11
|
class << self
|
9
12
|
attr_accessor :after_destroy_output
|
data/test/models/pirate.rb
CHANGED
@@ -36,8 +36,8 @@ class Pirate < ActiveRecord::Base
|
|
36
36
|
|
37
37
|
has_one :foo_bulb, -> { where :name => 'foo' }, :foreign_key => :car_id, :class_name => "Bulb"
|
38
38
|
|
39
|
-
accepts_nested_attributes_for :parrots, :birds, :allow_destroy => true, :reject_if => proc
|
40
|
-
accepts_nested_attributes_for :ship, :allow_destroy => true, :reject_if => proc
|
39
|
+
accepts_nested_attributes_for :parrots, :birds, :allow_destroy => true, :reject_if => proc(&:empty?)
|
40
|
+
accepts_nested_attributes_for :ship, :allow_destroy => true, :reject_if => proc(&:empty?)
|
41
41
|
accepts_nested_attributes_for :update_only_ship, :update_only => true
|
42
42
|
accepts_nested_attributes_for :parrots_with_method_callbacks, :parrots_with_proc_callbacks,
|
43
43
|
:birds_with_method_callbacks, :birds_with_proc_callbacks, :allow_destroy => true
|
@@ -56,7 +56,7 @@ class Pirate < ActiveRecord::Base
|
|
56
56
|
attr_accessor :cancel_save_from_callback, :parrots_limit
|
57
57
|
before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
|
58
58
|
def cancel_save_callback_method
|
59
|
-
|
59
|
+
throw(:abort)
|
60
60
|
end
|
61
61
|
|
62
62
|
private
|
data/test/models/post.rb
CHANGED
@@ -13,16 +13,18 @@ class Post < ActiveRecord::Base
|
|
13
13
|
|
14
14
|
module NamedExtension2
|
15
15
|
def greeting
|
16
|
-
"
|
16
|
+
"hullo"
|
17
17
|
end
|
18
18
|
end
|
19
19
|
|
20
20
|
scope :containing_the_letter_a, -> { where("body LIKE '%a%'") }
|
21
|
+
scope :titled_with_an_apostrophe, -> { where("title LIKE '%''%'") }
|
21
22
|
scope :ranked_by_comments, -> { order("comments_count DESC") }
|
22
23
|
|
23
24
|
scope :limit_by, lambda {|l| limit(l) }
|
24
25
|
|
25
26
|
belongs_to :author
|
27
|
+
belongs_to :readonly_author, -> { readonly }, class_name: "Author", foreign_key: :author_id
|
26
28
|
|
27
29
|
belongs_to :author_with_posts, -> { includes(:posts) }, :class_name => "Author", :foreign_key => :author_id
|
28
30
|
belongs_to :author_with_address, -> { includes(:author_address) }, :class_name => "Author", :foreign_key => :author_id
|
@@ -43,6 +45,8 @@ class Post < ActiveRecord::Base
|
|
43
45
|
scope :tagged_with, ->(id) { joins(:taggings).where(taggings: { tag_id: id }) }
|
44
46
|
scope :tagged_with_comment, ->(comment) { joins(:taggings).where(taggings: { comment: comment }) }
|
45
47
|
|
48
|
+
scope :typographically_interesting, -> { containing_the_letter_a.or(titled_with_an_apostrophe) }
|
49
|
+
|
46
50
|
has_many :comments do
|
47
51
|
def find_most_recent
|
48
52
|
order("id DESC").first
|
@@ -72,15 +76,11 @@ class Post < ActiveRecord::Base
|
|
72
76
|
through: :author_with_address,
|
73
77
|
source: :author_address_extra
|
74
78
|
|
75
|
-
has_many :comments_with_interpolated_conditions,
|
76
|
-
->(p) { where "#{"#{p.aliased_table_name}." rescue ""}body = ?", 'Thank you for the welcome' },
|
77
|
-
:class_name => 'Comment'
|
78
|
-
|
79
79
|
has_one :very_special_comment
|
80
80
|
has_one :very_special_comment_with_post, -> { includes(:post) }, :class_name => "VerySpecialComment"
|
81
81
|
has_one :very_special_comment_with_post_with_joins, -> { joins(:post).order('posts.id') }, class_name: "VerySpecialComment"
|
82
82
|
has_many :special_comments
|
83
|
-
has_many :
|
83
|
+
has_many :nonexistent_comments, -> { where 'comments.id < 0' }, :class_name => 'Comment'
|
84
84
|
|
85
85
|
has_many :special_comments_ratings, :through => :special_comments, :source => :ratings
|
86
86
|
has_many :special_comments_ratings_taggings, :through => :special_comments_ratings, :source => :taggings
|
@@ -186,6 +186,7 @@ class SubStiPost < StiPost
|
|
186
186
|
end
|
187
187
|
|
188
188
|
class FirstPost < ActiveRecord::Base
|
189
|
+
self.inheritance_column = :disabled
|
189
190
|
self.table_name = 'posts'
|
190
191
|
default_scope { where(:id => 1) }
|
191
192
|
|
@@ -194,6 +195,7 @@ class FirstPost < ActiveRecord::Base
|
|
194
195
|
end
|
195
196
|
|
196
197
|
class PostWithDefaultInclude < ActiveRecord::Base
|
198
|
+
self.inheritance_column = :disabled
|
197
199
|
self.table_name = 'posts'
|
198
200
|
default_scope { includes(:comments) }
|
199
201
|
has_many :comments, :foreign_key => :post_id
|
@@ -205,6 +207,7 @@ class PostWithSpecialCategorization < Post
|
|
205
207
|
end
|
206
208
|
|
207
209
|
class PostWithDefaultScope < ActiveRecord::Base
|
210
|
+
self.inheritance_column = :disabled
|
208
211
|
self.table_name = 'posts'
|
209
212
|
default_scope { order(:title) }
|
210
213
|
end
|
@@ -226,11 +229,13 @@ class PostWithIncludesDefaultScope < ActiveRecord::Base
|
|
226
229
|
end
|
227
230
|
|
228
231
|
class SpecialPostWithDefaultScope < ActiveRecord::Base
|
232
|
+
self.inheritance_column = :disabled
|
229
233
|
self.table_name = 'posts'
|
230
234
|
default_scope { where(:id => [1, 5,6]) }
|
231
235
|
end
|
232
236
|
|
233
237
|
class PostThatLoadsCommentsInAnAfterSaveHook < ActiveRecord::Base
|
238
|
+
self.inheritance_column = :disabled
|
234
239
|
self.table_name = 'posts'
|
235
240
|
has_many :comments, class_name: "CommentThatAutomaticallyAltersPostBody", foreign_key: :post_id
|
236
241
|
|
@@ -240,6 +245,7 @@ class PostThatLoadsCommentsInAnAfterSaveHook < ActiveRecord::Base
|
|
240
245
|
end
|
241
246
|
|
242
247
|
class PostWithAfterCreateCallback < ActiveRecord::Base
|
248
|
+
self.inheritance_column = :disabled
|
243
249
|
self.table_name = 'posts'
|
244
250
|
has_many :comments, foreign_key: :post_id
|
245
251
|
|
@@ -249,6 +255,7 @@ class PostWithAfterCreateCallback < ActiveRecord::Base
|
|
249
255
|
end
|
250
256
|
|
251
257
|
class PostWithCommentWithDefaultScopeReferencesAssociation < ActiveRecord::Base
|
258
|
+
self.inheritance_column = :disabled
|
252
259
|
self.table_name = 'posts'
|
253
260
|
has_many :comment_with_default_scope_references_associations, foreign_key: :post_id
|
254
261
|
has_one :first_comment, class_name: "CommentWithDefaultScopeReferencesAssociation", foreign_key: :post_id
|
@@ -258,7 +265,9 @@ class SerializedPost < ActiveRecord::Base
|
|
258
265
|
serialize :title
|
259
266
|
end
|
260
267
|
|
261
|
-
class
|
262
|
-
default_scope
|
263
|
-
|
268
|
+
class ConditionalStiPost < Post
|
269
|
+
default_scope { where(title: 'Untitled') }
|
270
|
+
end
|
271
|
+
|
272
|
+
class SubConditionalStiPost < ConditionalStiPost
|
264
273
|
end
|
data/test/models/project.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
class Project < ActiveRecord::Base
|
2
|
+
belongs_to :mentor
|
2
3
|
has_and_belongs_to_many :developers, -> { distinct.order 'developers.name desc, developers.id desc' }
|
3
4
|
has_and_belongs_to_many :readonly_developers, -> { readonly }, :class_name => "Developer"
|
4
5
|
has_and_belongs_to_many :non_unique_developers, -> { order 'developers.name desc, developers.id desc' }, :class_name => 'Developer'
|
@@ -11,6 +12,16 @@ class Project < ActiveRecord::Base
|
|
11
12
|
:before_remove => Proc.new {|o, r| o.developers_log << "before_removing#{r.id}"},
|
12
13
|
:after_remove => Proc.new {|o, r| o.developers_log << "after_removing#{r.id}"}
|
13
14
|
has_and_belongs_to_many :well_payed_salary_groups, -> { group("developers.salary").having("SUM(salary) > 10000").select("SUM(salary) as salary") }, :class_name => "Developer"
|
15
|
+
belongs_to :firm
|
16
|
+
has_one :lead_developer, through: :firm, inverse_of: :contracted_projects
|
17
|
+
|
18
|
+
begin
|
19
|
+
previous_value, ActiveRecord::Base.belongs_to_required_by_default =
|
20
|
+
ActiveRecord::Base.belongs_to_required_by_default, true
|
21
|
+
has_and_belongs_to_many :developers_required_by_default, class_name: "Developer"
|
22
|
+
ensure
|
23
|
+
ActiveRecord::Base.belongs_to_required_by_default = previous_value
|
24
|
+
end
|
14
25
|
|
15
26
|
attr_accessor :developers_log
|
16
27
|
after_initialize :set_developers_log
|
data/test/models/ship.rb
CHANGED
@@ -3,11 +3,12 @@ class Ship < ActiveRecord::Base
|
|
3
3
|
|
4
4
|
belongs_to :pirate
|
5
5
|
belongs_to :update_only_pirate, :class_name => 'Pirate'
|
6
|
+
belongs_to :developer, dependent: :destroy
|
6
7
|
has_many :parts, :class_name => 'ShipPart'
|
7
8
|
has_many :treasures
|
8
9
|
|
9
10
|
accepts_nested_attributes_for :parts, :allow_destroy => true
|
10
|
-
accepts_nested_attributes_for :pirate, :allow_destroy => true, :reject_if => proc
|
11
|
+
accepts_nested_attributes_for :pirate, :allow_destroy => true, :reject_if => proc(&:empty?)
|
11
12
|
accepts_nested_attributes_for :update_only_pirate, :update_only => true
|
12
13
|
|
13
14
|
validates_presence_of :name
|
@@ -15,17 +16,22 @@ class Ship < ActiveRecord::Base
|
|
15
16
|
attr_accessor :cancel_save_from_callback
|
16
17
|
before_save :cancel_save_callback_method, :if => :cancel_save_from_callback
|
17
18
|
def cancel_save_callback_method
|
18
|
-
|
19
|
+
throw(:abort)
|
19
20
|
end
|
20
21
|
end
|
21
22
|
|
22
23
|
class ShipWithoutNestedAttributes < ActiveRecord::Base
|
23
24
|
self.table_name = "ships"
|
25
|
+
has_many :prisoners, inverse_of: :ship, foreign_key: :ship_id
|
24
26
|
has_many :parts, class_name: "ShipPart", foreign_key: :ship_id
|
25
27
|
|
26
28
|
validates :name, presence: true
|
27
29
|
end
|
28
30
|
|
31
|
+
class Prisoner < ActiveRecord::Base
|
32
|
+
belongs_to :ship, autosave: true, class_name: "ShipWithoutNestedAttributes", inverse_of: :prisoners
|
33
|
+
end
|
34
|
+
|
29
35
|
class FamousShip < ActiveRecord::Base
|
30
36
|
self.table_name = 'ships'
|
31
37
|
belongs_to :famous_pirate
|
data/test/models/tag.rb
CHANGED
@@ -5,3 +5,9 @@ class Tag < ActiveRecord::Base
|
|
5
5
|
|
6
6
|
has_many :tagged_posts, :through => :taggings, :source => 'taggable', :source_type => 'Post'
|
7
7
|
end
|
8
|
+
|
9
|
+
class OrderedTag < Tag
|
10
|
+
self.table_name = "tags"
|
11
|
+
|
12
|
+
has_many :taggings, -> { order('taggings.id DESC') }, foreign_key: 'tag_id'
|
13
|
+
end
|
data/test/models/topic.rb
CHANGED
@@ -32,7 +32,7 @@ class Topic < ActiveRecord::Base
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
-
has_many :replies, :
|
35
|
+
has_many :replies, dependent: :destroy, foreign_key: "parent_id", autosave: true
|
36
36
|
has_many :approved_replies, -> { approved }, class_name: 'Reply', foreign_key: "parent_id", counter_cache: 'replies_count'
|
37
37
|
|
38
38
|
has_many :unique_replies, :dependent => :destroy, :foreign_key => "parent_id"
|
@@ -43,12 +43,6 @@ class Topic < ActiveRecord::Base
|
|
43
43
|
before_create :default_written_on
|
44
44
|
before_destroy :destroy_children
|
45
45
|
|
46
|
-
# Explicitly define as :date column so that returned Oracle DATE values would be typecasted to Date and not Time.
|
47
|
-
# Some tests depend on assumption that this attribute will have Date values.
|
48
|
-
if current_adapter?(:OracleEnhancedAdapter)
|
49
|
-
set_date_columns :last_read
|
50
|
-
end
|
51
|
-
|
52
46
|
def parent
|
53
47
|
Topic.find(parent_id)
|
54
48
|
end
|
@@ -86,7 +80,7 @@ class Topic < ActiveRecord::Base
|
|
86
80
|
end
|
87
81
|
|
88
82
|
def destroy_children
|
89
|
-
self.class.
|
83
|
+
self.class.where("parent_id = #{id}").delete_all
|
90
84
|
end
|
91
85
|
|
92
86
|
def set_email_address
|
data/test/models/tree.rb
ADDED
data/test/models/user.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'models/job'
|
2
|
+
|
3
|
+
class User < ActiveRecord::Base
|
4
|
+
has_secure_token
|
5
|
+
has_secure_token :auth_token
|
6
|
+
|
7
|
+
has_and_belongs_to_many :jobs_pool,
|
8
|
+
class_name: Job,
|
9
|
+
join_table: 'jobs_pool'
|
10
|
+
end
|
11
|
+
|
12
|
+
class UserWithNotification < User
|
13
|
+
after_create -> { Notification.create! message: "A new user has been created." }
|
14
|
+
end
|
@@ -1,28 +1,40 @@
|
|
1
1
|
ActiveRecord::Schema.define do
|
2
|
+
|
3
|
+
if ActiveRecord::Base.connection.version >= '5.6.0'
|
4
|
+
create_table :datetime_defaults, force: true do |t|
|
5
|
+
t.datetime :modified_datetime, default: -> { 'CURRENT_TIMESTAMP' }
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
2
9
|
create_table :binary_fields, force: true do |t|
|
3
10
|
t.binary :var_binary, limit: 255
|
4
11
|
t.binary :var_binary_large, limit: 4095
|
5
|
-
t.
|
6
|
-
t.
|
7
|
-
t.
|
8
|
-
t.
|
9
|
-
t.
|
10
|
-
t.text
|
11
|
-
t.
|
12
|
-
t.
|
13
|
-
end
|
12
|
+
t.tinyblob :tiny_blob
|
13
|
+
t.blob :normal_blob
|
14
|
+
t.mediumblob :medium_blob
|
15
|
+
t.longblob :long_blob
|
16
|
+
t.tinytext :tiny_text
|
17
|
+
t.text :normal_text
|
18
|
+
t.mediumtext :medium_text
|
19
|
+
t.longtext :long_text
|
14
20
|
|
15
|
-
|
21
|
+
t.index :var_binary
|
22
|
+
end
|
16
23
|
|
17
|
-
create_table :key_tests, force: true, :
|
24
|
+
create_table :key_tests, force: true, options: 'ENGINE=MyISAM' do |t|
|
18
25
|
t.string :awesome
|
19
26
|
t.string :pizza
|
20
27
|
t.string :snacks
|
28
|
+
t.index :awesome, type: :fulltext, name: 'index_key_tests_on_awesome'
|
29
|
+
t.index :pizza, using: :btree, name: 'index_key_tests_on_pizza'
|
30
|
+
t.index :snacks, name: 'index_key_tests_on_snack'
|
21
31
|
end
|
22
32
|
|
23
|
-
|
24
|
-
|
25
|
-
|
33
|
+
create_table :collation_tests, id: false, force: true do |t|
|
34
|
+
t.string :string_cs_column, limit: 1, collation: 'utf8_bin'
|
35
|
+
t.string :string_ci_column, limit: 1, collation: 'utf8_general_ci'
|
36
|
+
t.binary :binary_column, limit: 1
|
37
|
+
end
|
26
38
|
|
27
39
|
ActiveRecord::Base.connection.execute <<-SQL
|
28
40
|
DROP PROCEDURE IF EXISTS ten;
|
@@ -36,23 +48,21 @@ END
|
|
36
48
|
SQL
|
37
49
|
|
38
50
|
ActiveRecord::Base.connection.execute <<-SQL
|
39
|
-
DROP
|
51
|
+
DROP PROCEDURE IF EXISTS topics;
|
40
52
|
SQL
|
41
53
|
|
42
54
|
ActiveRecord::Base.connection.execute <<-SQL
|
43
|
-
CREATE
|
44
|
-
|
45
|
-
|
46
|
-
|
55
|
+
CREATE PROCEDURE topics(IN num INT) SQL SECURITY INVOKER
|
56
|
+
BEGIN
|
57
|
+
select * from topics limit num;
|
58
|
+
END
|
47
59
|
SQL
|
48
60
|
|
49
|
-
ActiveRecord::Base.connection.
|
50
|
-
DROP TABLE IF EXISTS enum_tests;
|
51
|
-
SQL
|
61
|
+
ActiveRecord::Base.connection.drop_table "enum_tests", if_exists: true
|
52
62
|
|
53
63
|
ActiveRecord::Base.connection.execute <<-SQL
|
54
64
|
CREATE TABLE enum_tests (
|
55
|
-
enum_column ENUM('text','blob','tiny','medium','long')
|
65
|
+
enum_column ENUM('text','blob','tiny','medium','long','unsigned','bigint')
|
56
66
|
)
|
57
67
|
SQL
|
58
68
|
end
|