ibm_db 5.2.0-x86-mingw32 → 5.4.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGES +9 -0
 - data/LICENSE +55 -18
 - data/README +1 -1
 - data/debug.log +1 -0
 - data/ext/Makefile +28 -24
 - data/ext/ibm_db.c +66 -65
 - data/ext/ibm_db.o +0 -0
 - data/ext/ibm_db.so +0 -0
 - data/ext/mkmf.log +26 -24
 - data/ext/ruby_ibm_db_cli.c +1 -0
 - data/ext/ruby_ibm_db_cli.o +0 -0
 - data/lib/active_record/connection_adapters/ibm_db_adapter.rb +1520 -1282
 - data/lib/ibm_db.so +1 -0
 - data/lib/mswin32/ibm_db.rb +3 -1
 - data/lib/mswin32/rb3x/i386/ruby30/ibm_db.so +0 -0
 - data/lib/mswin32/rb3x/i386/ruby31/ibm_db.so +0 -0
 - data/test/active_record/connection_adapters/fake_adapter.rb +5 -2
 - data/test/activejob/destroy_association_async_test.rb +305 -0
 - data/test/activejob/destroy_async_job_not_present_test.rb +31 -0
 - data/test/activejob/helper.rb +15 -0
 - data/test/assets/schema_dump_5_1.yml +345 -0
 - data/test/cases/adapter_prevent_writes_test.rb +334 -0
 - data/test/cases/adapter_test.rb +432 -218
 - data/test/cases/adapters/mysql2/active_schema_test.rb +85 -75
 - data/test/cases/adapters/mysql2/auto_increment_test.rb +34 -0
 - data/test/cases/adapters/mysql2/bind_parameter_test.rb +5 -3
 - data/test/cases/adapters/mysql2/boolean_test.rb +6 -4
 - data/test/cases/adapters/mysql2/case_sensitivity_test.rb +26 -24
 - data/test/cases/adapters/mysql2/charset_collation_test.rb +20 -17
 - data/test/cases/adapters/mysql2/connection_test.rb +48 -50
 - data/test/cases/adapters/mysql2/count_deleted_rows_with_lock_test.rb +28 -0
 - data/test/cases/adapters/mysql2/datetime_precision_quoting_test.rb +23 -19
 - data/test/cases/adapters/mysql2/enum_test.rb +32 -11
 - data/test/cases/adapters/mysql2/explain_test.rb +13 -11
 - data/test/cases/adapters/mysql2/json_test.rb +17 -188
 - data/test/cases/adapters/mysql2/mysql2_adapter_prevent_writes_test.rb +208 -0
 - data/test/cases/adapters/mysql2/mysql2_adapter_test.rb +183 -28
 - data/test/cases/adapters/mysql2/nested_deadlock_test.rb +75 -0
 - data/test/cases/adapters/mysql2/optimizer_hints_test.rb +69 -0
 - data/test/cases/adapters/mysql2/schema_migrations_test.rb +26 -21
 - data/test/cases/adapters/mysql2/schema_test.rb +24 -22
 - data/test/cases/adapters/mysql2/set_test.rb +32 -0
 - data/test/cases/adapters/mysql2/sp_test.rb +10 -8
 - data/test/cases/adapters/mysql2/sql_types_test.rb +8 -6
 - data/test/cases/adapters/mysql2/table_options_test.rb +93 -10
 - data/test/cases/adapters/mysql2/transaction_test.rb +151 -0
 - data/test/cases/adapters/mysql2/unsigned_type_test.rb +11 -9
 - data/test/cases/adapters/mysql2/virtual_column_test.rb +66 -0
 - data/test/cases/adapters/postgresql/active_schema_test.rb +40 -25
 - data/test/cases/adapters/postgresql/array_test.rb +118 -63
 - data/test/cases/adapters/postgresql/bit_string_test.rb +12 -10
 - data/test/cases/adapters/postgresql/bytea_test.rb +26 -25
 - data/test/cases/adapters/postgresql/case_insensitive_test.rb +10 -9
 - data/test/cases/adapters/postgresql/change_schema_test.rb +7 -5
 - data/test/cases/adapters/postgresql/cidr_test.rb +2 -0
 - data/test/cases/adapters/postgresql/citext_test.rb +58 -58
 - data/test/cases/adapters/postgresql/collation_test.rb +17 -15
 - data/test/cases/adapters/postgresql/composite_test.rb +25 -23
 - data/test/cases/adapters/postgresql/connection_test.rb +73 -85
 - data/test/cases/adapters/postgresql/create_unlogged_tables_test.rb +74 -0
 - data/test/cases/adapters/postgresql/datatype_test.rb +19 -22
 - data/test/cases/adapters/postgresql/date_test.rb +42 -0
 - data/test/cases/adapters/postgresql/domain_test.rb +9 -7
 - data/test/cases/adapters/postgresql/enum_test.rb +12 -10
 - data/test/cases/adapters/postgresql/explain_test.rb +10 -8
 - data/test/cases/adapters/postgresql/extension_migration_test.rb +13 -12
 - data/test/cases/adapters/postgresql/foreign_table_test.rb +109 -0
 - data/test/cases/adapters/postgresql/full_text_test.rb +8 -6
 - data/test/cases/adapters/postgresql/geometric_test.rb +57 -63
 - data/test/cases/adapters/postgresql/hstore_test.rb +288 -280
 - data/test/cases/adapters/postgresql/infinity_test.rb +54 -15
 - data/test/cases/adapters/postgresql/integer_test.rb +2 -0
 - data/test/cases/adapters/postgresql/interval_test.rb +99 -0
 - data/test/cases/adapters/postgresql/json_test.rb +16 -201
 - data/test/cases/adapters/postgresql/ltree_test.rb +14 -16
 - data/test/cases/adapters/postgresql/money_test.rb +47 -16
 - data/test/cases/adapters/postgresql/network_test.rb +36 -28
 - data/test/cases/adapters/postgresql/numbers_test.rb +7 -5
 - data/test/cases/adapters/postgresql/optimizer_hints_test.rb +71 -0
 - data/test/cases/adapters/postgresql/partitions_test.rb +22 -0
 - data/test/cases/adapters/postgresql/postgresql_adapter_prevent_writes_test.rb +205 -0
 - data/test/cases/adapters/postgresql/postgresql_adapter_test.rb +178 -136
 - data/test/cases/adapters/postgresql/prepared_statements_disabled_test.rb +27 -0
 - data/test/cases/adapters/postgresql/quoting_test.rb +12 -6
 - data/test/cases/adapters/postgresql/range_test.rb +406 -292
 - data/test/cases/adapters/postgresql/referential_integrity_test.rb +16 -15
 - data/test/cases/adapters/postgresql/rename_table_test.rb +9 -8
 - data/test/cases/adapters/postgresql/schema_authorization_test.rb +14 -23
 - data/test/cases/adapters/postgresql/schema_test.rb +207 -91
 - data/test/cases/adapters/postgresql/serial_test.rb +9 -7
 - data/test/cases/adapters/postgresql/statement_pool_test.rb +26 -6
 - data/test/cases/adapters/postgresql/timestamp_test.rb +17 -15
 - data/test/cases/adapters/postgresql/transaction_nested_test.rb +114 -0
 - data/test/cases/adapters/postgresql/transaction_test.rb +189 -0
 - data/test/cases/adapters/postgresql/type_lookup_test.rb +12 -10
 - data/test/cases/adapters/postgresql/utils_test.rb +11 -9
 - data/test/cases/adapters/postgresql/uuid_test.rb +226 -109
 - data/test/cases/adapters/postgresql/xml_test.rb +10 -14
 - data/test/cases/adapters/sqlite3/collation_test.rb +26 -15
 - data/test/cases/adapters/sqlite3/copy_table_test.rb +31 -28
 - data/test/cases/adapters/sqlite3/explain_test.rb +13 -11
 - data/test/cases/adapters/sqlite3/json_test.rb +29 -0
 - data/test/cases/adapters/sqlite3/quoting_test.rb +35 -57
 - data/test/cases/adapters/sqlite3/sqlite3_adapter_prevent_writes_test.rb +186 -0
 - data/test/cases/adapters/sqlite3/sqlite3_adapter_test.rb +318 -131
 - data/test/cases/adapters/sqlite3/sqlite3_create_folder_test.rb +11 -11
 - data/test/cases/adapters/sqlite3/statement_pool_test.rb +7 -6
 - data/test/cases/adapters/sqlite3/transaction_test.rb +123 -0
 - data/test/cases/aggregations_test.rb +14 -12
 - data/test/cases/annotate_test.rb +46 -0
 - data/test/cases/ar_schema_test.rb +153 -86
 - data/test/cases/arel/attributes/attribute_test.rb +1145 -0
 - data/test/cases/arel/attributes/math_test.rb +83 -0
 - data/test/cases/arel/attributes_test.rb +27 -0
 - data/test/cases/arel/collectors/bind_test.rb +40 -0
 - data/test/cases/arel/collectors/composite_test.rb +47 -0
 - data/test/cases/arel/collectors/sql_string_test.rb +41 -0
 - data/test/cases/arel/collectors/substitute_bind_collector_test.rb +48 -0
 - data/test/cases/arel/crud_test.rb +65 -0
 - data/test/cases/arel/delete_manager_test.rb +53 -0
 - data/test/cases/arel/factory_methods_test.rb +46 -0
 - data/test/cases/arel/helper.rb +45 -0
 - data/test/cases/arel/insert_manager_test.rb +241 -0
 - data/test/cases/arel/nodes/and_test.rb +30 -0
 - data/test/cases/arel/nodes/as_test.rb +36 -0
 - data/test/cases/arel/nodes/ascending_test.rb +46 -0
 - data/test/cases/arel/nodes/bin_test.rb +35 -0
 - data/test/cases/arel/nodes/binary_test.rb +29 -0
 - data/test/cases/arel/nodes/bind_param_test.rb +22 -0
 - data/test/cases/arel/nodes/case_test.rb +96 -0
 - data/test/cases/arel/nodes/casted_test.rb +18 -0
 - data/test/cases/arel/nodes/comment_test.rb +22 -0
 - data/test/cases/arel/nodes/count_test.rb +35 -0
 - data/test/cases/arel/nodes/delete_statement_test.rb +36 -0
 - data/test/cases/arel/nodes/descending_test.rb +46 -0
 - data/test/cases/arel/nodes/distinct_test.rb +21 -0
 - data/test/cases/arel/nodes/equality_test.rb +62 -0
 - data/test/cases/arel/nodes/extract_test.rb +43 -0
 - data/test/cases/arel/nodes/false_test.rb +21 -0
 - data/test/cases/arel/nodes/grouping_test.rb +26 -0
 - data/test/cases/arel/nodes/infix_operation_test.rb +42 -0
 - data/test/cases/arel/nodes/insert_statement_test.rb +44 -0
 - data/test/cases/arel/nodes/named_function_test.rb +48 -0
 - data/test/cases/arel/nodes/node_test.rb +22 -0
 - data/test/cases/arel/nodes/not_test.rb +31 -0
 - data/test/cases/arel/nodes/or_test.rb +36 -0
 - data/test/cases/arel/nodes/over_test.rb +69 -0
 - data/test/cases/arel/nodes/select_core_test.rb +79 -0
 - data/test/cases/arel/nodes/select_statement_test.rb +51 -0
 - data/test/cases/arel/nodes/sql_literal_test.rb +75 -0
 - data/test/cases/arel/nodes/sum_test.rb +35 -0
 - data/test/cases/arel/nodes/table_alias_test.rb +29 -0
 - data/test/cases/arel/nodes/true_test.rb +21 -0
 - data/test/cases/arel/nodes/unary_operation_test.rb +41 -0
 - data/test/cases/arel/nodes/update_statement_test.rb +60 -0
 - data/test/cases/arel/nodes/window_test.rb +81 -0
 - data/test/cases/arel/nodes_test.rb +34 -0
 - data/test/cases/arel/select_manager_test.rb +1238 -0
 - data/test/cases/arel/support/fake_record.rb +135 -0
 - data/test/cases/arel/table_test.rb +216 -0
 - data/test/cases/arel/update_manager_test.rb +126 -0
 - data/test/cases/arel/visitors/dispatch_contamination_test.rb +78 -0
 - data/test/cases/arel/visitors/dot_test.rb +90 -0
 - data/test/cases/arel/visitors/mysql_test.rb +157 -0
 - data/test/cases/arel/visitors/postgres_test.rb +366 -0
 - data/test/cases/arel/visitors/sqlite_test.rb +75 -0
 - data/test/cases/arel/visitors/to_sql_test.rb +750 -0
 - data/test/cases/associations/belongs_to_associations_test.rb +510 -158
 - data/test/cases/associations/bidirectional_destroy_dependencies_test.rb +4 -2
 - data/test/cases/associations/callbacks_test.rb +56 -38
 - data/test/cases/associations/cascaded_eager_loading_test.rb +118 -61
 - data/test/cases/associations/eager_load_includes_full_sti_class_test.rb +138 -18
 - data/test/cases/associations/eager_load_nested_include_test.rb +38 -37
 - data/test/cases/associations/eager_singularization_test.rb +21 -21
 - data/test/cases/associations/eager_test.rb +559 -415
 - data/test/cases/associations/extension_test.rb +18 -12
 - data/test/cases/associations/has_and_belongs_to_many_associations_test.rb +234 -213
 - data/test/cases/associations/has_many_associations_test.rb +1038 -465
 - data/test/cases/associations/has_many_through_associations_test.rb +558 -249
 - data/test/cases/associations/has_one_associations_test.rb +294 -129
 - data/test/cases/associations/has_one_through_associations_test.rb +121 -75
 - data/test/cases/associations/inner_join_association_test.rb +114 -38
 - data/test/cases/associations/inverse_associations_test.rb +606 -398
 - data/test/cases/associations/join_model_test.rb +158 -148
 - data/test/cases/associations/left_outer_join_association_test.rb +59 -24
 - data/test/cases/associations/nested_through_associations_test.rb +166 -109
 - data/test/cases/associations/required_test.rb +35 -10
 - data/test/cases/associations_test.rb +241 -110
 - data/test/cases/attribute_methods/read_test.rb +11 -11
 - data/test/cases/attribute_methods_test.rb +413 -298
 - data/test/cases/attributes_test.rb +145 -27
 - data/test/cases/autosave_association_test.rb +681 -436
 - data/test/cases/base_prevent_writes_test.rb +229 -0
 - data/test/cases/base_test.rb +599 -542
 - data/test/cases/batches_test.rb +288 -82
 - data/test/cases/binary_test.rb +26 -31
 - data/test/cases/bind_parameter_test.rb +194 -21
 - data/test/cases/boolean_test.rb +52 -0
 - data/test/cases/cache_key_test.rb +110 -5
 - data/test/cases/calculations_test.rb +740 -177
 - data/test/cases/callbacks_test.rb +74 -207
 - data/test/cases/clone_test.rb +15 -10
 - data/test/cases/coders/json_test.rb +2 -0
 - data/test/cases/coders/yaml_column_test.rb +16 -13
 - data/test/cases/collection_cache_key_test.rb +177 -20
 - data/test/cases/column_alias_test.rb +9 -7
 - data/test/cases/column_definition_test.rb +10 -68
 - data/test/cases/comment_test.rb +166 -107
 - data/test/cases/connection_adapters/adapter_leasing_test.rb +14 -10
 - data/test/cases/connection_adapters/connection_handler_test.rb +358 -51
 - data/test/cases/connection_adapters/connection_handlers_multi_db_test.rb +400 -0
 - data/test/cases/connection_adapters/connection_handlers_multi_pool_config_test.rb +103 -0
 - data/test/cases/connection_adapters/connection_handlers_sharding_db_test.rb +499 -0
 - data/test/cases/connection_adapters/connection_swapping_nested_test.rb +457 -0
 - data/test/cases/connection_adapters/legacy_connection_handlers_multi_db_test.rb +486 -0
 - data/test/cases/connection_adapters/legacy_connection_handlers_sharding_db_test.rb +586 -0
 - data/test/cases/connection_adapters/merge_and_resolve_default_url_config_test.rb +319 -138
 - data/test/cases/connection_adapters/mysql_type_lookup_test.rb +62 -50
 - data/test/cases/connection_adapters/schema_cache_test.rb +259 -26
 - data/test/cases/connection_adapters/type_lookup_test.rb +96 -95
 - data/test/cases/connection_management_test.rb +13 -11
 - data/test/cases/connection_pool_test.rb +316 -83
 - data/test/cases/core_test.rb +82 -58
 - data/test/cases/counter_cache_test.rb +204 -50
 - data/test/cases/custom_locking_test.rb +5 -3
 - data/test/cases/database_configurations/hash_config_test.rb +74 -0
 - data/test/cases/database_configurations/resolver_test.rb +150 -0
 - data/test/cases/database_configurations_test.rb +145 -0
 - data/test/cases/database_selector_test.rb +296 -0
 - data/test/cases/database_statements_test.rb +18 -16
 - data/test/cases/date_test.rb +8 -16
 - data/test/cases/date_time_precision_test.rb +100 -78
 - data/test/cases/date_time_test.rb +23 -8
 - data/test/cases/defaults_test.rb +106 -71
 - data/test/cases/delegated_type_test.rb +57 -0
 - data/test/cases/dirty_test.rb +419 -223
 - data/test/cases/disconnected_test.rb +6 -6
 - data/test/cases/dup_test.rb +54 -27
 - data/test/cases/enum_test.rb +461 -82
 - data/test/cases/errors_test.rb +7 -7
 - data/test/cases/explain_subscriber_test.rb +17 -15
 - data/test/cases/explain_test.rb +11 -19
 - data/test/cases/filter_attributes_test.rb +153 -0
 - data/test/cases/finder_respond_to_test.rb +14 -14
 - data/test/cases/finder_test.rb +669 -287
 - data/test/cases/fixture_set/file_test.rb +34 -38
 - data/test/cases/fixtures_test.rb +833 -176
 - data/test/cases/forbidden_attributes_protection_test.rb +32 -67
 - data/test/cases/habtm_destroy_order_test.rb +25 -25
 - data/test/cases/helper.rb +78 -49
 - data/test/cases/hot_compatibility_test.rb +33 -32
 - data/test/cases/i18n_test.rb +18 -17
 - data/test/cases/inheritance_test.rb +180 -115
 - data/test/cases/insert_all_test.rb +489 -0
 - data/test/cases/instrumentation_test.rb +101 -0
 - data/test/cases/integration_test.rb +119 -31
 - data/test/cases/invalid_connection_test.rb +18 -16
 - data/test/cases/invertible_migration_test.rb +183 -43
 - data/test/cases/json_attribute_test.rb +35 -0
 - data/test/cases/json_serialization_test.rb +57 -58
 - data/test/cases/json_shared_test_cases.rb +290 -0
 - data/test/cases/locking_test.rb +413 -119
 - data/test/cases/log_subscriber_test.rb +68 -26
 - data/test/cases/marshal_serialization_test.rb +39 -0
 - data/test/cases/migration/change_schema_test.rb +118 -72
 - data/test/cases/migration/change_table_test.rb +138 -30
 - data/test/cases/migration/check_constraint_test.rb +162 -0
 - data/test/cases/migration/column_attributes_test.rb +45 -35
 - data/test/cases/migration/column_positioning_test.rb +18 -6
 - data/test/cases/migration/columns_test.rb +93 -77
 - data/test/cases/migration/command_recorder_test.rb +121 -34
 - data/test/cases/migration/compatibility_test.rb +578 -23
 - data/test/cases/migration/create_join_table_test.rb +35 -25
 - data/test/cases/migration/foreign_key_test.rb +503 -284
 - data/test/cases/migration/helper.rb +4 -3
 - data/test/cases/migration/index_test.rb +119 -70
 - data/test/cases/migration/logger_test.rb +9 -6
 - data/test/cases/migration/pending_migrations_test.rb +88 -34
 - data/test/cases/migration/references_foreign_key_test.rb +164 -150
 - data/test/cases/migration/references_index_test.rb +38 -19
 - data/test/cases/migration/references_statements_test.rb +15 -14
 - data/test/cases/migration/rename_table_test.rb +53 -30
 - data/test/cases/migration_test.rb +637 -269
 - data/test/cases/migrator_test.rb +191 -135
 - data/test/cases/mixin_test.rb +7 -11
 - data/test/cases/modules_test.rb +36 -34
 - data/test/cases/multi_db_migrator_test.rb +223 -0
 - data/test/cases/multiparameter_attributes_test.rb +60 -33
 - data/test/cases/multiple_db_test.rb +16 -22
 - data/test/cases/nested_attributes_test.rb +341 -320
 - data/test/cases/nested_attributes_with_callbacks_test.rb +26 -24
 - data/test/cases/null_relation_test.rb +84 -0
 - data/test/cases/numeric_data_test.rb +93 -0
 - data/test/cases/persistence_test.rb +361 -269
 - data/test/cases/pooled_connections_test.rb +18 -26
 - data/test/cases/prepared_statement_status_test.rb +48 -0
 - data/test/cases/primary_keys_test.rb +210 -104
 - data/test/cases/query_cache_test.rb +610 -141
 - data/test/cases/quoting_test.rb +132 -31
 - data/test/cases/readonly_test.rb +49 -48
 - data/test/cases/reaper_test.rb +146 -32
 - data/test/cases/reflection_test.rb +167 -156
 - data/test/cases/relation/delegation_test.rb +49 -36
 - data/test/cases/relation/delete_all_test.rb +117 -0
 - data/test/cases/relation/merging_test.rb +319 -42
 - data/test/cases/relation/mutation_test.rb +55 -93
 - data/test/cases/relation/or_test.rb +129 -29
 - data/test/cases/relation/predicate_builder_test.rb +21 -6
 - data/test/cases/relation/record_fetch_warning_test.rb +5 -3
 - data/test/cases/relation/select_test.rb +67 -0
 - data/test/cases/relation/update_all_test.rb +317 -0
 - data/test/cases/relation/where_chain_test.rb +68 -32
 - data/test/cases/relation/where_clause_test.rb +136 -61
 - data/test/cases/relation/where_test.rb +155 -48
 - data/test/cases/relation_test.rb +266 -112
 - data/test/cases/relations_test.rb +969 -744
 - data/test/cases/reload_models_test.rb +13 -9
 - data/test/cases/reserved_word_test.rb +141 -0
 - data/test/cases/result_test.rb +68 -17
 - data/test/cases/sanitize_test.rb +87 -71
 - data/test/cases/schema_dumper_test.rb +221 -128
 - data/test/cases/schema_loading_test.rb +3 -2
 - data/test/cases/scoping/default_scoping_test.rb +185 -144
 - data/test/cases/scoping/named_scoping_test.rb +177 -89
 - data/test/cases/scoping/relation_scoping_test.rb +197 -75
 - data/test/cases/secure_token_test.rb +18 -3
 - data/test/cases/serialization_test.rb +30 -28
 - data/test/cases/serialized_attribute_test.rb +133 -42
 - data/test/cases/signed_id_test.rb +168 -0
 - data/test/cases/statement_cache_test.rb +41 -24
 - data/test/cases/statement_invalid_test.rb +42 -0
 - data/test/cases/store_test.rb +180 -55
 - data/test/cases/strict_loading_test.rb +473 -0
 - data/test/cases/suppressor_test.rb +26 -12
 - data/test/cases/tasks/database_tasks_test.rb +1258 -194
 - data/test/cases/tasks/mysql_rake_test.rb +370 -298
 - data/test/cases/tasks/postgresql_rake_test.rb +481 -251
 - data/test/cases/tasks/sqlite_rake_test.rb +225 -178
 - data/test/cases/test_case.rb +51 -40
 - data/test/cases/test_databases_test.rb +79 -0
 - data/test/cases/test_fixtures_test.rb +79 -19
 - data/test/cases/time_precision_test.rb +98 -76
 - data/test/cases/timestamp_test.rb +102 -99
 - data/test/cases/touch_later_test.rb +12 -10
 - data/test/cases/transaction_callbacks_test.rb +344 -90
 - data/test/cases/transaction_isolation_test.rb +12 -12
 - data/test/cases/transactions_test.rb +612 -162
 - data/test/cases/type/adapter_specific_registry_test.rb +14 -2
 - data/test/cases/type/date_time_test.rb +4 -2
 - data/test/cases/type/integer_test.rb +4 -2
 - data/test/cases/type/string_test.rb +10 -8
 - data/test/cases/type/time_test.rb +28 -0
 - data/test/cases/type/type_map_test.rb +29 -28
 - data/test/cases/type/unsigned_integer_test.rb +19 -0
 - data/test/cases/type_test.rb +2 -0
 - data/test/cases/types_test.rb +3 -1
 - data/test/cases/unconnected_test.rb +14 -1
 - data/test/cases/unsafe_raw_sql_test.rb +274 -0
 - data/test/cases/validations/absence_validation_test.rb +19 -17
 - data/test/cases/validations/association_validation_test.rb +30 -28
 - data/test/cases/validations/i18n_generate_message_validation_test.rb +34 -16
 - data/test/cases/validations/i18n_validation_test.rb +22 -21
 - data/test/cases/validations/length_validation_test.rb +34 -33
 - data/test/cases/validations/numericality_validation_test.rb +181 -0
 - data/test/cases/validations/presence_validation_test.rb +21 -19
 - data/test/cases/validations/uniqueness_validation_test.rb +156 -86
 - data/test/cases/validations_repair_helper.rb +2 -0
 - data/test/cases/validations_test.rb +61 -26
 - data/test/cases/view_test.rb +122 -116
 - data/test/cases/yaml_serialization_test.rb +79 -34
 - data/test/config.example.yml +19 -19
 - data/test/config.rb +3 -1
 - data/test/config.yml +16 -6
 - data/test/fixtures/all/namespaced/accounts.yml +2 -0
 - data/test/fixtures/author_addresses.yml +1 -8
 - data/test/fixtures/authors.yml +1 -7
 - data/test/fixtures/binaries.yml +4 -0
 - data/test/fixtures/books.yml +9 -2
 - data/test/fixtures/categories_posts.yml +3 -0
 - data/test/fixtures/citations.yml +5 -0
 - data/test/fixtures/comments.yml +7 -0
 - data/test/fixtures/companies.yml +5 -0
 - data/test/fixtures/computers.yml +2 -0
 - data/test/fixtures/customers.yml +10 -1
 - data/test/fixtures/developers.yml +1 -1
 - data/test/fixtures/essays.yml +10 -0
 - data/test/fixtures/faces.yml +3 -3
 - data/test/fixtures/humans.yml +5 -0
 - data/test/fixtures/interests.yml +7 -7
 - data/test/fixtures/memberships.yml +7 -0
 - data/test/fixtures/minimalistics.yml +3 -0
 - data/test/fixtures/mixed_case_monkeys.yml +2 -2
 - data/test/fixtures/naked/yml/courses_with_invalid_key.yml +3 -0
 - data/test/fixtures/naked/yml/parrots.yml +1 -0
 - data/test/fixtures/other_books.yml +26 -0
 - data/test/fixtures/other_posts.yml +1 -0
 - data/test/fixtures/parrots.yml +7 -1
 - data/test/fixtures/pirates.yml +3 -0
 - data/test/fixtures/posts.yml +11 -3
 - data/test/fixtures/readers.yml +6 -0
 - data/test/fixtures/reserved_words/values.yml +2 -2
 - data/test/fixtures/sponsors.yml +3 -0
 - data/test/fixtures/strict_zines.yml +2 -0
 - data/test/fixtures/subscribers.yml +1 -1
 - data/test/fixtures/tasks.yml +1 -1
 - data/test/fixtures/warehouse-things.yml +3 -0
 - data/test/migrations/10_urban/9_add_expressions.rb +2 -0
 - data/test/migrations/decimal/1_give_me_big_numbers.rb +6 -4
 - data/test/migrations/magic/1_currencies_have_symbols.rb +3 -2
 - data/test/migrations/missing/1000_people_have_middle_names.rb +2 -0
 - data/test/migrations/missing/1_people_have_last_names.rb +2 -0
 - data/test/migrations/missing/3_we_need_reminders.rb +2 -0
 - data/test/migrations/missing/4_innocent_jointable.rb +3 -1
 - data/test/migrations/rename/1_we_need_things.rb +2 -0
 - data/test/migrations/rename/2_rename_things.rb +2 -0
 - data/test/migrations/to_copy/1_people_have_hobbies.rb +3 -1
 - data/test/migrations/to_copy/2_people_have_descriptions.rb +3 -1
 - data/test/migrations/to_copy2/1_create_articles.rb +2 -0
 - data/test/migrations/to_copy2/2_create_comments.rb +3 -1
 - data/test/migrations/to_copy_with_name_collision/1_people_have_hobbies.rb +3 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010101_people_have_hobbies.rb +3 -1
 - data/test/migrations/to_copy_with_timestamps/20090101010202_people_have_descriptions.rb +3 -1
 - data/test/migrations/to_copy_with_timestamps2/20090101010101_create_articles.rb +2 -0
 - data/test/migrations/to_copy_with_timestamps2/20090101010202_create_comments.rb +2 -0
 - data/test/migrations/valid/1_valid_people_have_last_names.rb +2 -0
 - data/test/migrations/valid/2_we_need_reminders.rb +2 -0
 - data/test/migrations/valid/3_innocent_jointable.rb +3 -1
 - data/test/migrations/valid_with_subdirectories/1_valid_people_have_last_names.rb +2 -0
 - data/test/migrations/valid_with_subdirectories/sub/2_we_need_reminders.rb +2 -0
 - data/test/migrations/valid_with_subdirectories/sub1/3_innocent_jointable.rb +3 -1
 - data/test/migrations/valid_with_timestamps/20100101010101_valid_with_timestamps_people_have_last_names.rb +2 -0
 - data/test/migrations/valid_with_timestamps/20100201010101_valid_with_timestamps_we_need_reminders.rb +2 -0
 - data/test/migrations/valid_with_timestamps/20100301010101_valid_with_timestamps_innocent_jointable.rb +3 -1
 - data/test/migrations/version_check/20131219224947_migration_version_check.rb +2 -0
 - data/test/models/account.rb +46 -0
 - data/test/models/admin/account.rb +3 -1
 - data/test/models/admin/randomly_named_c1.rb +2 -0
 - data/test/models/admin/user.rb +16 -8
 - data/test/models/admin.rb +4 -2
 - data/test/models/aircraft.rb +3 -1
 - data/test/models/arunit2_model.rb +2 -0
 - data/test/models/author.rb +153 -102
 - data/test/models/auto_id.rb +2 -0
 - data/test/models/autoloadable/extra_firm.rb +2 -0
 - data/test/models/binary.rb +3 -1
 - data/test/models/binary_field.rb +6 -0
 - data/test/models/bird.rb +13 -1
 - data/test/models/book.rb +14 -4
 - data/test/models/book_destroy_async.rb +24 -0
 - data/test/models/boolean.rb +5 -0
 - data/test/models/bulb.rb +13 -4
 - data/test/models/cake_designer.rb +2 -0
 - data/test/models/car.rb +17 -10
 - data/test/models/carrier.rb +2 -0
 - data/test/models/cart.rb +5 -0
 - data/test/models/cat.rb +2 -0
 - data/test/models/categorization.rb +8 -6
 - data/test/models/category.rb +28 -16
 - data/test/models/chef.rb +2 -0
 - data/test/models/citation.rb +5 -1
 - data/test/models/club.rb +13 -10
 - data/test/models/college.rb +4 -2
 - data/test/models/column.rb +2 -0
 - data/test/models/column_name.rb +2 -0
 - data/test/models/comment.rb +32 -10
 - data/test/models/company.rb +102 -106
 - data/test/models/company_in_module.rb +27 -26
 - data/test/models/computer.rb +3 -1
 - data/test/models/contact.rb +15 -13
 - data/test/models/content.rb +5 -3
 - data/test/models/contract.rb +21 -3
 - data/test/models/country.rb +2 -4
 - data/test/models/course.rb +3 -1
 - data/test/models/customer.rb +10 -8
 - data/test/models/customer_carrier.rb +2 -0
 - data/test/models/dashboard.rb +2 -0
 - data/test/models/default.rb +2 -0
 - data/test/models/department.rb +2 -0
 - data/test/models/destroy_async_parent.rb +15 -0
 - data/test/models/destroy_async_parent_soft_delete.rb +20 -0
 - data/test/models/developer.rb +152 -85
 - data/test/models/dl_keyed_belongs_to.rb +13 -0
 - data/test/models/dl_keyed_belongs_to_soft_delete.rb +19 -0
 - data/test/models/dl_keyed_has_many.rb +5 -0
 - data/test/models/dl_keyed_has_many_through.rb +5 -0
 - data/test/models/dl_keyed_has_one.rb +5 -0
 - data/test/models/dl_keyed_join.rb +10 -0
 - data/test/models/dog.rb +2 -0
 - data/test/models/dog_lover.rb +2 -0
 - data/test/models/doubloon.rb +3 -1
 - data/test/models/drink_designer.rb +17 -0
 - data/test/models/edge.rb +4 -2
 - data/test/models/electron.rb +2 -0
 - data/test/models/engine.rb +3 -2
 - data/test/models/entrant.rb +2 -0
 - data/test/models/entry.rb +5 -0
 - data/test/models/essay.rb +6 -3
 - data/test/models/essay_destroy_async.rb +12 -0
 - data/test/models/event.rb +3 -1
 - data/test/models/eye.rb +5 -3
 - data/test/models/face.rb +14 -6
 - data/test/models/family.rb +6 -0
 - data/test/models/family_tree.rb +6 -0
 - data/test/models/friendship.rb +5 -3
 - data/test/models/frog.rb +8 -0
 - data/test/models/guid.rb +3 -1
 - data/test/models/guitar.rb +2 -0
 - data/test/models/hotel.rb +5 -3
 - data/test/models/human.rb +39 -0
 - data/test/models/image.rb +3 -1
 - data/test/models/interest.rb +14 -3
 - data/test/models/invoice.rb +4 -2
 - data/test/models/item.rb +3 -1
 - data/test/models/job.rb +5 -3
 - data/test/models/joke.rb +4 -2
 - data/test/models/keyboard.rb +3 -1
 - data/test/models/legacy_thing.rb +2 -0
 - data/test/models/lesson.rb +2 -0
 - data/test/models/line_item.rb +3 -1
 - data/test/models/liquid.rb +2 -0
 - data/test/models/matey.rb +3 -1
 - data/test/models/measurement.rb +4 -0
 - data/test/models/member.rb +23 -20
 - data/test/models/member_detail.rb +3 -0
 - data/test/models/member_type.rb +2 -0
 - data/test/models/membership.rb +4 -1
 - data/test/models/mentor.rb +3 -1
 - data/test/models/message.rb +5 -0
 - data/test/models/minimalistic.rb +2 -0
 - data/test/models/minivan.rb +3 -2
 - data/test/models/mixed_case_monkey.rb +3 -1
 - data/test/models/molecule.rb +2 -0
 - data/test/models/mouse.rb +6 -0
 - data/test/models/movie.rb +2 -0
 - data/test/models/node.rb +4 -2
 - data/test/models/non_primary_key.rb +2 -0
 - data/test/models/notification.rb +2 -0
 - data/test/models/numeric_data.rb +12 -0
 - data/test/models/order.rb +4 -2
 - data/test/models/organization.rb +9 -7
 - data/test/models/other_dog.rb +3 -1
 - data/test/models/owner.rb +6 -4
 - data/test/models/parrot.rb +12 -4
 - data/test/models/person.rb +59 -54
 - data/test/models/personal_legacy_thing.rb +3 -1
 - data/test/models/pet.rb +4 -2
 - data/test/models/pet_treasure.rb +2 -0
 - data/test/models/pirate.rb +67 -43
 - data/test/models/possession.rb +3 -1
 - data/test/models/post.rb +184 -86
 - data/test/models/price_estimate.rb +11 -1
 - data/test/models/professor.rb +3 -1
 - data/test/models/project.rb +14 -12
 - data/test/models/publisher/article.rb +2 -0
 - data/test/models/publisher/magazine.rb +2 -0
 - data/test/models/publisher.rb +2 -0
 - data/test/models/randomly_named_c1.rb +2 -0
 - data/test/models/rating.rb +5 -1
 - data/test/models/reader.rb +7 -5
 - data/test/models/recipe.rb +2 -0
 - data/test/models/record.rb +2 -0
 - data/test/models/reference.rb +6 -3
 - data/test/models/reply.rb +39 -21
 - data/test/models/room.rb +6 -0
 - data/test/models/section.rb +6 -0
 - data/test/models/seminar.rb +6 -0
 - data/test/models/session.rb +6 -0
 - data/test/models/ship.rb +12 -9
 - data/test/models/ship_part.rb +5 -3
 - data/test/models/shop.rb +4 -2
 - data/test/models/shop_account.rb +2 -0
 - data/test/models/speedometer.rb +2 -0
 - data/test/models/sponsor.rb +8 -5
 - data/test/models/squeak.rb +6 -0
 - data/test/models/strict_zine.rb +7 -0
 - data/test/models/string_key_object.rb +2 -0
 - data/test/models/student.rb +2 -0
 - data/test/models/subscriber.rb +4 -2
 - data/test/models/subscription.rb +5 -1
 - data/test/models/tag.rb +6 -3
 - data/test/models/tagging.rb +13 -6
 - data/test/models/task.rb +2 -0
 - data/test/models/topic.rb +54 -19
 - data/test/models/toy.rb +4 -0
 - data/test/models/traffic_light.rb +2 -0
 - data/test/models/treasure.rb +5 -3
 - data/test/models/treaty.rb +2 -4
 - data/test/models/tree.rb +2 -0
 - data/test/models/tuning_peg.rb +2 -0
 - data/test/models/tyre.rb +2 -0
 - data/test/models/user.rb +12 -4
 - data/test/models/uuid_child.rb +2 -0
 - data/test/models/uuid_item.rb +2 -0
 - data/test/models/uuid_parent.rb +2 -0
 - data/test/models/vegetables.rb +12 -3
 - data/test/models/vertex.rb +6 -4
 - data/test/models/warehouse_thing.rb +2 -0
 - data/test/models/wheel.rb +3 -1
 - data/test/models/without_table.rb +3 -1
 - data/test/models/zine.rb +3 -1
 - data/test/schema/mysql2_specific_schema.rb +49 -35
 - data/test/schema/oracle_specific_schema.rb +13 -15
 - data/test/schema/postgresql_specific_schema.rb +51 -40
 - data/test/schema/schema.rb +334 -154
 - data/test/schema/sqlite_specific_schema.rb +9 -16
 - data/test/support/config.rb +26 -26
 - data/test/support/connection.rb +14 -8
 - data/test/support/connection_helper.rb +3 -1
 - data/test/support/ddl_helper.rb +2 -0
 - data/test/support/marshal_compatibility_fixtures/IBM_DB/rails_6_0_topic.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/IBM_DB/rails_6_0_topic_associations.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/Mysql2/rails_6_0_topic.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/Mysql2/rails_6_0_topic_associations.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/PostgreSQL/rails_6_0_topic.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/PostgreSQL/rails_6_0_topic_associations.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/SQLite/rails_6_0_topic.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/SQLite/rails_6_0_topic_associations.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/legacy_6_0_record_mysql.dump +0 -0
 - data/test/support/marshal_compatibility_fixtures/legacy_relation.dump +0 -0
 - data/test/support/schema_dumping_helper.rb +2 -0
 - data/test/support/stubs/strong_parameters.rb +40 -0
 - data/test/support/yaml_compatibility_fixtures/rails_v1_mysql.yml +206 -0
 - data/test/support/yaml_compatibility_fixtures/rails_v2.yml +55 -0
 - metadata +192 -14
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 53ebbd59f14d4e0274c0833df140ec787ebf91bf9a972a8253ca1116b8f600c9
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 0a58578883d5ab1a48ce28adc24a50cb8cbf44928b5ef8847af571de53e7a898
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: e349b375fffd4e049ed8dc10811dfbfc1829d044d660596cbdd5f8a10fa51e7e056676c5a234c327d90cb75243f05f8f1482215c54b81543ba9f9f9567c6f947
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 12fc93d1bc0f44c8dd641c07a7ef461a7896ecc4ba5332a4272c4e7f9cf177c60fdcb5f1b26510703e5cd4b1960ada1719a31dd1ffc3a9b9ab60b268f247beb6
         
     | 
    
        data/CHANGES
    CHANGED
    
    | 
         @@ -1,6 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Change Log
         
     | 
| 
       2 
2 
     | 
    
         
             
            ==============
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
      
 4 
     | 
    
         
            +
            2022/10/06 (IBM_DB adapter 5.3.2, driver 3.0.6)
         
     | 
| 
      
 5 
     | 
    
         
            +
              - Allowed all rails versions < 6.2 in gemspec, replaced limit clause with FETCH FIRST n ROWS
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            2022/09/21 (IBM_DB adapter 5.3.1, driver 3.0.6)
         
     | 
| 
      
 8 
     | 
    
         
            +
              - Yanked version 5.3.0 as package includes clidriver
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
            2022/09/17 (IBM_DB adapter 5.3.0, driver 3.0.6)
         
     | 
| 
      
 11 
     | 
    
         
            +
              - Support for Ruby 3.0 and Rails 6.1
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
       4 
13 
     | 
    
         
             
            2018/05/24 (IBM_DB adapter 4.0.0, driver 3.0.5)
         
     | 
| 
       5 
14 
     | 
    
         
             
              - Rails 5.0.7 Toleration support. New features of Active Record 5.0.7 are not added also none of the open issue are fixed in this release.
         
     | 
| 
       6 
15 
     | 
    
         | 
    
        data/LICENSE
    CHANGED
    
    | 
         @@ -1,18 +1,55 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
             
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
             
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
       12 
     | 
    
         
            -
             
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
             
     | 
| 
       15 
     | 
    
         
            -
             
     | 
| 
       16 
     | 
    
         
            -
             
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            Apache License
         
     | 
| 
      
 2 
     | 
    
         
            +
            Version 2.0, January 2004
         
     | 
| 
      
 3 
     | 
    
         
            +
            http://www.apache.org/licenses/
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            1. Definitions.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
               1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
               2. You must cause any modified files to carry prominent notices stating that You changed the files; and
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
               3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
               4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
            6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
            8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            END OF TERMS AND CONDITIONS
         
     | 
    
        data/README
    CHANGED
    
    | 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            =====================================================================
         
     | 
| 
       2 
     | 
    
         
            -
            README for the IBM_DB Adapter  
     | 
| 
      
 2 
     | 
    
         
            +
            README for the IBM_DB Adapter >= 5.0.0 and Driver >= 3.0.5
         
     | 
| 
       3 
3 
     | 
    
         
             
            For ActiveRecord Version >= 5.0.7 (and Rails >= 5.0.7)
         
     | 
| 
       4 
4 
     | 
    
         
             
            =====================================================================
         
     | 
| 
       5 
5 
     | 
    
         | 
    
        data/debug.log
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Logfile created on 2023-03-28 15:47:54 -0400 by logger.rb/v1.5.0
         
     | 
    
        data/ext/Makefile
    CHANGED
    
    | 
         @@ -3,6 +3,7 @@ SHELL = /bin/sh 
     | 
|
| 
       3 
3 
     | 
    
         | 
| 
       4 
4 
     | 
    
         
             
            # V=0 quiet, V=1 verbose.  other values don't work.
         
     | 
| 
       5 
5 
     | 
    
         
             
            V = 0
         
     | 
| 
      
 6 
     | 
    
         
            +
            V0 = $(V:0=)
         
     | 
| 
       6 
7 
     | 
    
         
             
            Q1 = $(V:1=)
         
     | 
| 
       7 
8 
     | 
    
         
             
            Q = $(Q1:0=@)
         
     | 
| 
       8 
9 
     | 
    
         
             
            ECHO1 = $(V:1=@ :)
         
     | 
| 
         @@ -12,12 +13,12 @@ NULLCMD = : 
     | 
|
| 
       12 
13 
     | 
    
         
             
            #### Start of system configuration section. ####
         
     | 
| 
       13 
14 
     | 
    
         | 
| 
       14 
15 
     | 
    
         
             
            srcdir = .
         
     | 
| 
       15 
     | 
    
         
            -
            topdir = /C/ 
     | 
| 
      
 16 
     | 
    
         
            +
            topdir = /C/Ruby31/include/ruby-3.1.0
         
     | 
| 
       16 
17 
     | 
    
         
             
            hdrdir = $(topdir)
         
     | 
| 
       17 
     | 
    
         
            -
            arch_hdrdir = C 
     | 
| 
      
 18 
     | 
    
         
            +
            arch_hdrdir = /C/Ruby31/include/ruby-3.1.0/i386-mingw32
         
     | 
| 
       18 
19 
     | 
    
         
             
            PATH_SEPARATOR = :
         
     | 
| 
       19 
20 
     | 
    
         
             
            VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
         
     | 
| 
       20 
     | 
    
         
            -
            prefix = $(DESTDIR)/C/ 
     | 
| 
      
 21 
     | 
    
         
            +
            prefix = $(DESTDIR)/C/Ruby31
         
     | 
| 
       21 
22 
     | 
    
         
             
            rubysitearchprefix = $(rubylibprefix)/$(sitearch)
         
     | 
| 
       22 
23 
     | 
    
         
             
            rubyarchprefix = $(rubylibprefix)/$(arch)
         
     | 
| 
       23 
24 
     | 
    
         
             
            rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
         
     | 
| 
         @@ -52,6 +53,7 @@ infodir = $(datarootdir)/info 
     | 
|
| 
       52 
53 
     | 
    
         
             
            docdir = $(datarootdir)/doc/$(PACKAGE)
         
     | 
| 
       53 
54 
     | 
    
         
             
            oldincludedir = $(DESTDIR)/usr/include
         
     | 
| 
       54 
55 
     | 
    
         
             
            includedir = $(prefix)/include
         
     | 
| 
      
 56 
     | 
    
         
            +
            runstatedir = $(localstatedir)/run
         
     | 
| 
       55 
57 
     | 
    
         
             
            localstatedir = $(prefix)/var
         
     | 
| 
       56 
58 
     | 
    
         
             
            sharedstatedir = $(prefix)/com
         
     | 
| 
       57 
59 
     | 
    
         
             
            sysconfdir = $(DESTDIR)
         
     | 
| 
         @@ -63,12 +65,13 @@ bindir = $(exec_prefix)/bin 
     | 
|
| 
       63 
65 
     | 
    
         
             
            archdir = $(rubyarchdir)
         
     | 
| 
       64 
66 
     | 
    
         | 
| 
       65 
67 
     | 
    
         | 
| 
       66 
     | 
    
         
            -
             
     | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
      
 68 
     | 
    
         
            +
            CC_WRAPPER = 
         
     | 
| 
      
 69 
     | 
    
         
            +
            CC = gcc
         
     | 
| 
      
 70 
     | 
    
         
            +
            CXX = g++
         
     | 
| 
       68 
71 
     | 
    
         
             
            LIBRUBY = lib$(RUBY_SO_NAME).dll.a
         
     | 
| 
       69 
72 
     | 
    
         
             
            LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
         
     | 
| 
       70 
73 
     | 
    
         
             
            LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
         
     | 
| 
       71 
     | 
    
         
            -
            LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
         
     | 
| 
      
 74 
     | 
    
         
            +
            LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static $(MAINLIBS)
         
     | 
| 
       72 
75 
     | 
    
         
             
            empty =
         
     | 
| 
       73 
76 
     | 
    
         
             
            OUTFLAG = -o $(empty)
         
     | 
| 
       74 
77 
     | 
    
         
             
            COUTFLAG = -o $(empty)
         
     | 
| 
         @@ -76,27 +79,28 @@ CSRCFLAG = $(empty) 
     | 
|
| 
       76 
79 
     | 
    
         | 
| 
       77 
80 
     | 
    
         
             
            RUBY_EXTCONF_H = unicode_support_version.h
         
     | 
| 
       78 
81 
     | 
    
         
             
            cflags   = $(optflags) $(debugflags) $(warnflags)
         
     | 
| 
       79 
     | 
    
         
            -
            cxxflags =  
     | 
| 
       80 
     | 
    
         
            -
            optflags = -O3 -fno-omit-frame-pointer
         
     | 
| 
      
 82 
     | 
    
         
            +
            cxxflags = 
         
     | 
| 
      
 83 
     | 
    
         
            +
            optflags = -O3 -fno-omit-frame-pointer -fno-fast-math
         
     | 
| 
       81 
84 
     | 
    
         
             
            debugflags = -ggdb3
         
     | 
| 
       82 
     | 
    
         
            -
            warnflags = -Wall -Wextra - 
     | 
| 
      
 85 
     | 
    
         
            +
            warnflags = -Wall -Wextra -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -Wundef
         
     | 
| 
      
 86 
     | 
    
         
            +
            cppflags = 
         
     | 
| 
       83 
87 
     | 
    
         
             
            CCDLFLAGS = 
         
     | 
| 
       84 
88 
     | 
    
         
             
            CFLAGS   = $(CCDLFLAGS) -O3 -fno-fast-math -fstack-protector-strong $(ARCH_FLAG)
         
     | 
| 
       85 
89 
     | 
    
         
             
            INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
         
     | 
| 
       86 
90 
     | 
    
         
             
            DEFS     = -D_FILE_OFFSET_BITS=64
         
     | 
| 
       87 
     | 
    
         
            -
            CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -IC 
     | 
| 
       88 
     | 
    
         
            -
            CXXFLAGS = $(CCDLFLAGS) -march= 
     | 
| 
       89 
     | 
    
         
            -
            ldflags  = -L. -pipe -s -fstack-protector-strong
         
     | 
| 
       90 
     | 
    
         
            -
            dldflags = -pipe -s -fstack-protector-strong -Wl,--enable-auto-image-base,--enable-auto-import $(DEFFILE) 
     | 
| 
      
 91 
     | 
    
         
            +
            CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -IC:/Users/pnarayanappa/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/include -D__USE_MINGW_ANSI_STDIO=1 -DFD_SETSIZE=2048 -D_WIN32_WINNT=0x0600 -D__MINGW_USE_VC2005_COMPAT $(DEFS) $(cppflags)
         
     | 
| 
      
 92 
     | 
    
         
            +
            CXXFLAGS = $(CCDLFLAGS) -march=pentium4 -mtune=generic -O2 -pipe $(ARCH_FLAG)
         
     | 
| 
      
 93 
     | 
    
         
            +
            ldflags  = -L. -pipe -s -fstack-protector-strong -Wl,--no-as-needed
         
     | 
| 
      
 94 
     | 
    
         
            +
            dldflags = -pipe -s -fstack-protector-strong -Wl,--enable-auto-image-base,--enable-auto-import $(DEFFILE)
         
     | 
| 
       91 
95 
     | 
    
         
             
            ARCH_FLAG = 
         
     | 
| 
       92 
96 
     | 
    
         
             
            DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
         
     | 
| 
       93 
97 
     | 
    
         
             
            LDSHARED = $(CC) -shared
         
     | 
| 
       94 
98 
     | 
    
         
             
            LDSHAREDXX = $(CXX) -shared
         
     | 
| 
       95 
     | 
    
         
            -
            AR = ar
         
     | 
| 
      
 99 
     | 
    
         
            +
            AR = i686-w64-mingw32-gcc-ar
         
     | 
| 
       96 
100 
     | 
    
         
             
            EXEEXT = .exe
         
     | 
| 
       97 
101 
     | 
    
         | 
| 
       98 
102 
     | 
    
         
             
            RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
         
     | 
| 
       99 
     | 
    
         
            -
            RUBY_SO_NAME = msvcrt- 
     | 
| 
      
 103 
     | 
    
         
            +
            RUBY_SO_NAME = msvcrt-ruby310
         
     | 
| 
       100 
104 
     | 
    
         
             
            RUBYW_INSTALL_NAME = $(RUBYW_BASE_NAME)
         
     | 
| 
       101 
105 
     | 
    
         
             
            RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
         
     | 
| 
       102 
106 
     | 
    
         
             
            RUBYW_BASE_NAME = rubyw
         
     | 
| 
         @@ -104,13 +108,13 @@ RUBY_BASE_NAME = ruby 
     | 
|
| 
       104 
108 
     | 
    
         | 
| 
       105 
109 
     | 
    
         
             
            arch = i386-mingw32
         
     | 
| 
       106 
110 
     | 
    
         
             
            sitearch = i386-msvcrt
         
     | 
| 
       107 
     | 
    
         
            -
            ruby_version =  
     | 
| 
      
 111 
     | 
    
         
            +
            ruby_version = 3.1.0
         
     | 
| 
       108 
112 
     | 
    
         
             
            ruby = $(bindir)/$(RUBY_BASE_NAME)
         
     | 
| 
       109 
113 
     | 
    
         
             
            RUBY = $(ruby)
         
     | 
| 
       110 
114 
     | 
    
         
             
            ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h $(RUBY_EXTCONF_H)
         
     | 
| 
       111 
115 
     | 
    
         | 
| 
       112 
116 
     | 
    
         
             
            RM = rm -f
         
     | 
| 
       113 
     | 
    
         
            -
            RM_RF =  
     | 
| 
      
 117 
     | 
    
         
            +
            RM_RF = rm -fr
         
     | 
| 
       114 
118 
     | 
    
         
             
            RMDIRS = rmdir --ignore-fail-on-non-empty -p
         
     | 
| 
       115 
119 
     | 
    
         
             
            MAKEDIRS = /usr/bin/mkdir -p
         
     | 
| 
       116 
120 
     | 
    
         
             
            INSTALL = /usr/bin/install -c
         
     | 
| 
         @@ -122,8 +126,8 @@ TOUCH = exit > 
     | 
|
| 
       122 
126 
     | 
    
         
             
            #### End of system configuration section. ####
         
     | 
| 
       123 
127 
     | 
    
         | 
| 
       124 
128 
     | 
    
         
             
            preload = 
         
     | 
| 
       125 
     | 
    
         
            -
            libpath = . $(libdir) C 
     | 
| 
       126 
     | 
    
         
            -
            LIBPATH =  -L. -L$(libdir) -LC 
     | 
| 
      
 129 
     | 
    
         
            +
            libpath = . $(libdir) C:/Users/pnarayanappa/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib
         
     | 
| 
      
 130 
     | 
    
         
            +
            LIBPATH =  -L. -L$(libdir) -LC:/Users/pnarayanappa/ruby-ibmdb/IBM_DB_Adapter/ibm_db/ext/../lib/clidriver/lib '-Wl,-R$$ORIGIN/clidriver/lib' 
         
     | 
| 
       127 
131 
     | 
    
         
             
            DEFFILE = $(TARGET)-$(arch).def
         
     | 
| 
       128 
132 
     | 
    
         | 
| 
       129 
133 
     | 
    
         
             
            CLEANFILES = mkmf.log $(DEFFILE)
         
     | 
| 
         @@ -134,7 +138,7 @@ extout = 
     | 
|
| 
       134 
138 
     | 
    
         
             
            extout_prefix = 
         
     | 
| 
       135 
139 
     | 
    
         
             
            target_prefix = 
         
     | 
| 
       136 
140 
     | 
    
         
             
            LOCAL_LIBS = 
         
     | 
| 
       137 
     | 
    
         
            -
            LIBS = $(LIBRUBYARG_SHARED) -ldb2cli  - 
     | 
| 
      
 141 
     | 
    
         
            +
            LIBS = $(LIBRUBYARG_SHARED) -ldb2cli  -lshell32 -lws2_32 -liphlpapi -limagehlp -lshlwapi -lbcrypt  
         
     | 
| 
       138 
142 
     | 
    
         
             
            ORIG_SRCS = ibm_db.c ruby_ibm_db_cli.c
         
     | 
| 
       139 
143 
     | 
    
         
             
            SRCS = $(ORIG_SRCS) 
         
     | 
| 
       140 
144 
     | 
    
         
             
            OBJS = ibm_db.o ruby_ibm_db_cli.o
         
     | 
| 
         @@ -152,11 +156,11 @@ BINDIR        = $(bindir) 
     | 
|
| 
       152 
156 
     | 
    
         
             
            RUBYCOMMONDIR = $(sitedir)$(target_prefix)
         
     | 
| 
       153 
157 
     | 
    
         
             
            RUBYLIBDIR    = $(sitelibdir)$(target_prefix)
         
     | 
| 
       154 
158 
     | 
    
         
             
            RUBYARCHDIR   = $(sitearchdir)$(target_prefix)
         
     | 
| 
       155 
     | 
    
         
            -
            HDRDIR        = $( 
     | 
| 
       156 
     | 
    
         
            -
            ARCHHDRDIR    = $( 
     | 
| 
      
 159 
     | 
    
         
            +
            HDRDIR        = $(sitehdrdir)$(target_prefix)
         
     | 
| 
      
 160 
     | 
    
         
            +
            ARCHHDRDIR    = $(sitearchhdrdir)$(target_prefix)
         
     | 
| 
       157 
161 
     | 
    
         
             
            TARGET_SO_DIR =
         
     | 
| 
       158 
162 
     | 
    
         
             
            TARGET_SO     = $(TARGET_SO_DIR)$(DLLIB)
         
     | 
| 
       159 
     | 
    
         
            -
            CLEANLIBS     = $(TARGET_SO) 
         
     | 
| 
      
 163 
     | 
    
         
            +
            CLEANLIBS     = $(TARGET_SO) false
         
     | 
| 
       160 
164 
     | 
    
         
             
            CLEANOBJS     = *.o  *.bak
         
     | 
| 
       161 
165 
     | 
    
         | 
| 
       162 
166 
     | 
    
         
             
            all:    $(DLLIB)
         
     | 
| 
         @@ -169,7 +173,7 @@ clean-rb-default:: 
     | 
|
| 
       169 
173 
     | 
    
         
             
            clean-rb::
         
     | 
| 
       170 
174 
     | 
    
         
             
            clean-so::
         
     | 
| 
       171 
175 
     | 
    
         
             
            clean: clean-so clean-static clean-rb-default clean-rb
         
     | 
| 
       172 
     | 
    
         
            -
            		-$(Q)$( 
     | 
| 
      
 176 
     | 
    
         
            +
            		-$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
         
     | 
| 
       173 
177 
     | 
    
         | 
| 
       174 
178 
     | 
    
         
             
            distclean-rb-default::
         
     | 
| 
       175 
179 
     | 
    
         
             
            distclean-rb::
         
     | 
    
        data/ext/ibm_db.c
    CHANGED
    
    | 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
              +----------------------------------------------------------------------+
         
     | 
| 
       3 
3 
     | 
    
         
             
              |  Licensed Materials - Property of IBM                                |
         
     | 
| 
       4 
4 
     | 
    
         
             
              |                                                                      |
         
     | 
| 
       5 
     | 
    
         
            -
              | (C) Copyright IBM Corporation 2006 -  
     | 
| 
      
 5 
     | 
    
         
            +
              | (C) Copyright IBM Corporation 2006 - 2022                            |
         
     | 
| 
       6 
6 
     | 
    
         
             
              +----------------------------------------------------------------------+
         
     | 
| 
       7 
7 
     | 
    
         
             
              | Authors: Sushant Koduru, Lynh Nguyen, Kanchana Padmanabhan,          |
         
     | 
| 
       8 
8 
     | 
    
         
             
              |          Dan Scott, Helmut Tessarek, Sam Ruby, Kellen Bombardier,    |
         
     | 
| 
         @@ -12,7 +12,7 @@ 
     | 
|
| 
       12 
12 
     | 
    
         
             
              +----------------------------------------------------------------------+
         
     | 
| 
       13 
13 
     | 
    
         
             
            */
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
     | 
    
         
            -
            #define MODULE_RELEASE "3.0 
     | 
| 
      
 15 
     | 
    
         
            +
            #define MODULE_RELEASE "3.1.0"
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
            #ifdef HAVE_CONFIG_H
         
     | 
| 
       18 
18 
     | 
    
         
             
            #include "config.h"
         
     | 
| 
         @@ -28,10 +28,7 @@ 
     | 
|
| 
       28 
28 
     | 
    
         
             
            #include "ruby_ibm_db.h"
         
     | 
| 
       29 
29 
     | 
    
         
             
            #include <ctype.h>
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
            # 
     | 
| 
       32 
     | 
    
         
            -
            	#include <ruby/thread.h>
         
     | 
| 
       33 
     | 
    
         
            -
            #endif
         
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
      
 31 
     | 
    
         
            +
            #include <ruby/thread.h>
         
     | 
| 
       35 
32 
     | 
    
         
             
            #include <ruby/version.h>
         
     | 
| 
       36 
33 
     | 
    
         | 
| 
       37 
34 
     | 
    
         
             
            /* True global resources - no need for thread safety here */
         
     | 
| 
         @@ -100,10 +97,12 @@ typedef struct _ibm_db_fetch_helper_struct { 
     | 
|
| 
       100 
97 
     | 
    
         
             
            void ruby_init_ibm_db();
         
     | 
| 
       101 
98 
     | 
    
         | 
| 
       102 
99 
     | 
    
         
             
            /* equivalent functions on different platforms */
         
     | 
| 
       103 
     | 
    
         
            -
            # 
     | 
| 
       104 
     | 
    
         
            -
            # 
     | 
| 
       105 
     | 
    
         
            -
            # 
     | 
| 
       106 
     | 
    
         
            -
            # 
     | 
| 
      
 100 
     | 
    
         
            +
            #ifndef STRCASECMP
         
     | 
| 
      
 101 
     | 
    
         
            +
            #  ifdef _WIN32
         
     | 
| 
      
 102 
     | 
    
         
            +
            #    define STRCASECMP stricmp
         
     | 
| 
      
 103 
     | 
    
         
            +
            #  else
         
     | 
| 
      
 104 
     | 
    
         
            +
            #    define STRCASECMP strcasecmp
         
     | 
| 
      
 105 
     | 
    
         
            +
            #  endif
         
     | 
| 
       107 
106 
     | 
    
         
             
            #endif
         
     | 
| 
       108 
107 
     | 
    
         | 
| 
       109 
108 
     | 
    
         
             
            static VALUE mDB;
         
     | 
| 
         @@ -684,29 +683,12 @@ static void _ruby_ibm_db_mark_stmt_struct(stmt_handle *handle) 
     | 
|
| 
       684 
683 
     | 
    
         
             
            {
         
     | 
| 
       685 
684 
     | 
    
         
             
            }
         
     | 
| 
       686 
685 
     | 
    
         | 
| 
       687 
     | 
    
         
            -
             
     | 
| 
      
 686 
     | 
    
         
            +
            static inline
         
     | 
| 
       688 
687 
     | 
    
         
             
            VALUE ibm_Ruby_Thread_Call(rb_blocking_function_t *func, void *data1, rb_unblock_function_t *ubf, void *data2)
         
     | 
| 
       689 
688 
     | 
    
         
             
            {
         
     | 
| 
       690 
     | 
    
         
            -
            	 
     | 
| 
       691 
     | 
    
         
            -
             
     | 
| 
       692 
     | 
    
         
            -
             
     | 
| 
       693 
     | 
    
         
            -
            			#ifdef _WIN32
         
     | 
| 
       694 
     | 
    
         
            -
            				void *(*f)(void*) = (void *(*)(void*))func;
         
     | 
| 
       695 
     | 
    
         
            -
            				return (VALUE)rb_thread_call_without_gvl(f, data1, ubf, data2);
         
     | 
| 
       696 
     | 
    
         
            -
            			#elif __APPLE__
         
     | 
| 
       697 
     | 
    
         
            -
            				return rb_thread_call_without_gvl(func, data1, ubf, data2);                	   
         
     | 
| 
       698 
     | 
    
         
            -
            			#else
         
     | 
| 
       699 
     | 
    
         
            -
            				rb_thread_call_without_gvl(func, data1, ubf, data2);
         
     | 
| 
       700 
     | 
    
         
            -
            	                #endif	
         
     | 
| 
       701 
     | 
    
         
            -
            		}		
         
     | 
| 
       702 
     | 
    
         
            -
            		else	
         
     | 
| 
       703 
     | 
    
         
            -
            		{
         
     | 
| 
       704 
     | 
    
         
            -
            			rb_thread_call_without_gvl(func, data1, ubf, data2);
         
     | 
| 
       705 
     | 
    
         
            -
            		}
         
     | 
| 
       706 
     | 
    
         
            -
            	#else
         
     | 
| 
       707 
     | 
    
         
            -
            		rb_thread_call_without_gvl(func, data1, ubf, data2);
         
     | 
| 
       708 
     | 
    
         
            -
            	#endif
         
     | 
| 
       709 
     | 
    
         
            -
              }
         
     | 
| 
      
 689 
     | 
    
         
            +
            	void *(*f)(void*) = (void *(*)(void*))func;
         
     | 
| 
      
 690 
     | 
    
         
            +
            	return (VALUE)rb_thread_call_without_gvl(f, data1, ubf, data2);
         
     | 
| 
      
 691 
     | 
    
         
            +
            }
         
     | 
| 
       710 
692 
     | 
    
         | 
| 
       711 
693 
     | 
    
         | 
| 
       712 
694 
     | 
    
         
             
            /*  */
         
     | 
| 
         @@ -2355,7 +2337,7 @@ static VALUE _ruby_ibm_db_connect_helper2( connect_helper_args *data ) { 
     | 
|
| 
       2355 
2337 
     | 
    
         
             
                    handleAttr_args->handle      =  &( conn_res->hdbc );
         
     | 
| 
       2356 
2338 
     | 
    
         
             
                    handleAttr_args->strLength   =  SQL_IS_INTEGER;
         
     | 
| 
       2357 
2339 
     | 
    
         
             
                    handleAttr_args->attribute   =  SQL_ATTR_REPLACE_QUOTED_LITERALS;
         
     | 
| 
       2358 
     | 
    
         
            -
                    handleAttr_args->valuePtr    =  (SQLPOINTER)(enable_numeric_literals);
         
     | 
| 
      
 2340 
     | 
    
         
            +
                    handleAttr_args->valuePtr    =  (SQLPOINTER)(size_t)(enable_numeric_literals);
         
     | 
| 
       2359 
2341 
     | 
    
         
             
                    rc = _ruby_ibm_db_SQLSetConnectAttr_helper( handleAttr_args );
         
     | 
| 
       2360 
2342 
     | 
    
         
             
                    if (rc != SQL_SUCCESS) {
         
     | 
| 
       2361 
2343 
     | 
    
         
             
                      handleAttr_args->attribute =  SQL_ATTR_REPLACE_QUOTED_LITERALS_OLDVALUE;
         
     | 
| 
         @@ -2525,14 +2507,13 @@ static VALUE _ruby_ibm_db_connect_helper( int argc, VALUE *argv, int isPersisten 
     | 
|
| 
       2525 
2507 
     | 
    
         
             
              }
         
     | 
| 
       2526 
2508 
     | 
    
         
             
              /* Call the function where the actual logic is being run*/
         
     | 
| 
       2527 
2509 
     | 
    
         
             
              #ifdef UNICODE_SUPPORT_VERSION_H
         
     | 
| 
       2528 
     | 
    
         
            -
             
     | 
| 
       2529 
     | 
    
         
            -
            	
         
     | 
| 
      
 2510 
     | 
    
         
            +
                _ruby_ibm_db_connect_helper2( helper_args );
         
     | 
| 
       2530 
2511 
     | 
    
         | 
| 
       2531 
2512 
     | 
    
         
             
                conn_res = helper_args->conn_res;
         
     | 
| 
       2532 
2513 
     | 
    
         | 
| 
       2533 
2514 
     | 
    
         
             
            	if(helper_args->isPersistent)
         
     | 
| 
       2534 
2515 
     | 
    
         
             
            	{
         
     | 
| 
       2535 
     | 
    
         
            -
            		if(helper_args-> entry ==  
     | 
| 
      
 2516 
     | 
    
         
            +
            		if(helper_args-> entry == (VALUE)0)
         
     | 
| 
       2536 
2517 
     | 
    
         
             
            		{
         
     | 
| 
       2537 
2518 
     | 
    
         
             
            			return_value = Qnil;
         
     | 
| 
       2538 
2519 
     | 
    
         
             
            		}
         
     | 
| 
         @@ -2903,7 +2884,7 @@ VALUE ruby_ibm_db_createDb_helper(VALUE connection, VALUE dbName, VALUE codeSet, 
     | 
|
| 
       2903 
2884 
     | 
    
         
             
              VALUE mode_utf16      = Qnil;
         
     | 
| 
       2904 
2885 
     | 
    
         
             
            #endif
         
     | 
| 
       2905 
2886 
     | 
    
         | 
| 
       2906 
     | 
    
         
            -
               
     | 
| 
      
 2887 
     | 
    
         
            +
              RETCODE rc;
         
     | 
| 
       2907 
2888 
     | 
    
         | 
| 
       2908 
2889 
     | 
    
         
             
              create_drop_db_args *create_db_args = NULL;
         
     | 
| 
       2909 
2890 
     | 
    
         
             
              conn_handle *conn_res;
         
     | 
| 
         @@ -3059,7 +3040,7 @@ VALUE ruby_ibm_db_dropDb_helper(VALUE connection, VALUE dbName) { 
     | 
|
| 
       3059 
3040 
     | 
    
         | 
| 
       3060 
3041 
     | 
    
         
             
              VALUE return_value =  Qfalse;
         
     | 
| 
       3061 
3042 
     | 
    
         | 
| 
       3062 
     | 
    
         
            -
               
     | 
| 
      
 3043 
     | 
    
         
            +
              RETCODE rc;
         
     | 
| 
       3063 
3044 
     | 
    
         | 
| 
       3064 
3045 
     | 
    
         
             
              create_drop_db_args *drop_db_args = NULL;
         
     | 
| 
       3065 
3046 
     | 
    
         
             
              conn_handle         *conn_res     = NULL;
         
     | 
| 
         @@ -3320,7 +3301,7 @@ VALUE ibm_db_autocommit(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       3320 
3301 
     | 
    
         
             
                    handleAttr_args->attribute   =  SQL_ATTR_AUTOCOMMIT;
         
     | 
| 
       3321 
3302 
     | 
    
         | 
| 
       3322 
3303 
     | 
    
         
             
            #ifndef PASE
         
     | 
| 
       3323 
     | 
    
         
            -
                    handleAttr_args->valuePtr = (SQLPOINTER)autocommit;
         
     | 
| 
      
 3304 
     | 
    
         
            +
                    handleAttr_args->valuePtr = (SQLPOINTER)(size_t)autocommit;
         
     | 
| 
       3324 
3305 
     | 
    
         
             
            #else
         
     | 
| 
       3325 
3306 
     | 
    
         
             
                    handleAttr_args->valuePtr = (SQLPOINTER)&autocommit;
         
     | 
| 
       3326 
3307 
     | 
    
         
             
            #endif
         
     | 
| 
         @@ -3456,7 +3437,7 @@ VALUE ibm_db_bind_param_helper(int argc, char * varname, long varname_len ,long 
     | 
|
| 
       3456 
3437 
     | 
    
         
             
                case 3:
         
     | 
| 
       3457 
3438 
     | 
    
         
             
                  param_type = SQL_PARAM_INPUT;
         
     | 
| 
       3458 
3439 
     | 
    
         | 
| 
       3459 
     | 
    
         
            -
                  #ifdef  
     | 
| 
      
 3440 
     | 
    
         
            +
                  #ifdef UNICODE_SUPPORT_VERSION_H
         
     | 
| 
       3460 
3441 
     | 
    
         
             
                           	ibm_Ruby_Thread_Call ( (void *)_ruby_ibm_db_SQLDescribeParam_helper, data,
         
     | 
| 
       3461 
3442 
     | 
    
         
             
                                     (void *)_ruby_ibm_db_Statement_level_UBF, stmt_res);
         
     | 
| 
       3462 
3443 
     | 
    
         
             
            		rc = data->rc;
         
     | 
| 
         @@ -5663,7 +5644,7 @@ static int _ruby_ibm_db_do_prepare(conn_handle *conn_res, VALUE stmt, stmt_handl 
     | 
|
| 
       5663 
5644 
     | 
    
         
             
                  if ( rc == SQL_ERROR ) {
         
     | 
| 
       5664 
5645 
     | 
    
         
             
                    ruby_xfree( prepare_args );
         
     | 
| 
       5665 
5646 
     | 
    
         
             
                    prepare_args = NULL;
         
     | 
| 
       5666 
     | 
    
         
            -
                    rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 5647 
     | 
    
         
            +
                    rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       5667 
5648 
     | 
    
         
             
                    return rc;
         
     | 
| 
       5668 
5649 
     | 
    
         
             
                  }
         
     | 
| 
       5669 
5650 
     | 
    
         
             
                }
         
     | 
| 
         @@ -5803,7 +5784,7 @@ VALUE ibm_db_exec(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       5803 
5784 
     | 
    
         
             
                      stmt_res = NULL;
         
     | 
| 
       5804 
5785 
     | 
    
         
             
                      ruby_xfree( exec_direct_args );
         
     | 
| 
       5805 
5786 
     | 
    
         
             
                      exec_direct_args = NULL;
         
     | 
| 
       5806 
     | 
    
         
            -
                      rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 5787 
     | 
    
         
            +
                      rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       5807 
5788 
     | 
    
         
             
                      return Qfalse;
         
     | 
| 
       5808 
5789 
     | 
    
         
             
                    }
         
     | 
| 
       5809 
5790 
     | 
    
         
             
                  }
         
     | 
| 
         @@ -7006,15 +6987,14 @@ VALUE ibm_db_execute(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       7006 
6987 
     | 
    
         
             
                bind_array->error             =  &error;
         
     | 
| 
       7007 
6988 
     | 
    
         | 
| 
       7008 
6989 
     | 
    
         
             
                #ifdef UNICODE_SUPPORT_VERSION_H
         
     | 
| 
       7009 
     | 
    
         
            -
             
     | 
| 
       7010 
     | 
    
         
            -
                                        RUBY_UBF_IO, NULL );
         
     | 
| 
      
 6990 
     | 
    
         
            +
                  _ruby_ibm_db_execute_helper( bind_array );
         
     | 
| 
       7011 
6991 
     | 
    
         
             
            	  ret_value = bind_array->return_value;
         
     | 
| 
       7012 
6992 
     | 
    
         
             
                #else
         
     | 
| 
       7013 
6993 
     | 
    
         
             
                  ret_value = _ruby_ibm_db_execute_helper( bind_array );
         
     | 
| 
       7014 
6994 
     | 
    
         
             
                #endif
         
     | 
| 
       7015 
6995 
     | 
    
         | 
| 
       7016 
6996 
     | 
    
         
             
                if( ret_value == Qnil || ret_value == Qfalse ) {
         
     | 
| 
       7017 
     | 
    
         
            -
                  rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 6997 
     | 
    
         
            +
                  rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       7018 
6998 
     | 
    
         
             
                  ruby_xfree( bind_array );
         
     | 
| 
       7019 
6999 
     | 
    
         
             
                  bind_array = NULL;
         
     | 
| 
       7020 
7000 
     | 
    
         
             
                  return Qfalse;
         
     | 
| 
         @@ -9271,7 +9251,7 @@ VALUE ibm_db_result(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       9271 
9251 
     | 
    
         
             
              }
         
     | 
| 
       9272 
9252 
     | 
    
         | 
| 
       9273 
9253 
     | 
    
         
             
              if( error != Qnil && ret_val == Qnil) {
         
     | 
| 
       9274 
     | 
    
         
            -
                rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 9254 
     | 
    
         
            +
                rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       9275 
9255 
     | 
    
         
             
                ret_val = Qnil;
         
     | 
| 
       9276 
9256 
     | 
    
         
             
              }
         
     | 
| 
       9277 
9257 
     | 
    
         | 
| 
         @@ -9567,8 +9547,6 @@ static VALUE _ruby_ibm_db_bind_fetch_helper(ibm_db_fetch_helper_args *data) 
     | 
|
| 
       9567 
9547 
     | 
    
         
             
                    case SQL_TYPE_DATE:
         
     | 
| 
       9568 
9548 
     | 
    
         
             
                    case SQL_TYPE_TIME:
         
     | 
| 
       9569 
9549 
     | 
    
         
             
                    case SQL_TYPE_TIMESTAMP:
         
     | 
| 
       9570 
     | 
    
         
            -
                    case SQL_BIGINT:
         
     | 
| 
       9571 
     | 
    
         
            -
             
     | 
| 
       9572 
9550 
     | 
    
         
             
                      if ( op & FETCH_ASSOC ) {
         
     | 
| 
       9573 
9551 
     | 
    
         
             
                        rb_hash_aset(return_value, colName, rb_str_new2((char *)row_data->str_val));
         
     | 
| 
       9574 
9552 
     | 
    
         
             
                      }
         
     | 
| 
         @@ -9579,6 +9557,17 @@ static VALUE _ruby_ibm_db_bind_fetch_helper(ibm_db_fetch_helper_args *data) 
     | 
|
| 
       9579 
9557 
     | 
    
         
             
                      }
         
     | 
| 
       9580 
9558 
     | 
    
         
             
                      break;
         
     | 
| 
       9581 
9559 
     | 
    
         | 
| 
      
 9560 
     | 
    
         
            +
                    case SQL_BIGINT:
         
     | 
| 
      
 9561 
     | 
    
         
            +
                      if ( op & FETCH_ASSOC ) {
         
     | 
| 
      
 9562 
     | 
    
         
            +
                        rb_hash_aset(return_value, colName, LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9563 
     | 
    
         
            +
                      }
         
     | 
| 
      
 9564 
     | 
    
         
            +
                      if ( op == FETCH_INDEX ) {
         
     | 
| 
      
 9565 
     | 
    
         
            +
                        rb_ary_store(return_value, i, LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9566 
     | 
    
         
            +
                      } else if ( op == FETCH_BOTH ) {
         
     | 
| 
      
 9567 
     | 
    
         
            +
                        rb_hash_aset(return_value, INT2NUM(i), LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9568 
     | 
    
         
            +
                      }
         
     | 
| 
      
 9569 
     | 
    
         
            +
                      break;
         
     | 
| 
      
 9570 
     | 
    
         
            +
             
     | 
| 
       9582 
9571 
     | 
    
         
             
                    case SQL_DECIMAL:
         
     | 
| 
       9583 
9572 
     | 
    
         
             
                    case SQL_NUMERIC:
         
     | 
| 
       9584 
9573 
     | 
    
         
             
                    case SQL_DECFLOAT:
         
     | 
| 
         @@ -9590,22 +9579,36 @@ static VALUE _ruby_ibm_db_bind_fetch_helper(ibm_db_fetch_helper_args *data) 
     | 
|
| 
       9590 
9579 
     | 
    
         
             
                       return Qnil; 
         
     | 
| 
       9591 
9580 
     | 
    
         
             
                      }
         
     | 
| 
       9592 
9581 
     | 
    
         | 
| 
       9593 
     | 
    
         
            -
                       
     | 
| 
       9594 
     | 
    
         
            -
                       
     | 
| 
       9595 
     | 
    
         
            -
             
     | 
| 
      
 9582 
     | 
    
         
            +
                      if ((atof(row_data->str_val) - atol(row_data->str_val)) > 0)
         
     | 
| 
      
 9583 
     | 
    
         
            +
                      {
         
     | 
| 
      
 9584 
     | 
    
         
            +
                        strcpy(tmpStr, "BigDecimal(\'");
         
     | 
| 
      
 9585 
     | 
    
         
            +
                        strcat(tmpStr, row_data->str_val);
         
     | 
| 
      
 9586 
     | 
    
         
            +
                        strcat(tmpStr, "\')");
         
     | 
| 
       9596 
9587 
     | 
    
         | 
| 
       9597 
     | 
    
         
            -
             
     | 
| 
       9598 
     | 
    
         
            -
             
     | 
| 
      
 9588 
     | 
    
         
            +
                        if ( op & FETCH_ASSOC ) {
         
     | 
| 
      
 9589 
     | 
    
         
            +
                          rb_hash_aset(return_value, colName, rb_eval_string(tmpStr));
         
     | 
| 
      
 9590 
     | 
    
         
            +
                        }
         
     | 
| 
      
 9591 
     | 
    
         
            +
                        if ( op == FETCH_INDEX ) {
         
     | 
| 
      
 9592 
     | 
    
         
            +
                          rb_ary_store(return_value, i, rb_eval_string(tmpStr) );
         
     | 
| 
      
 9593 
     | 
    
         
            +
                        } else if ( op == FETCH_BOTH ) {
         
     | 
| 
      
 9594 
     | 
    
         
            +
                          rb_hash_aset( return_value, INT2NUM(i), rb_eval_string( tmpStr ) );
         
     | 
| 
      
 9595 
     | 
    
         
            +
                        }
         
     | 
| 
      
 9596 
     | 
    
         
            +
             
     | 
| 
      
 9597 
     | 
    
         
            +
                        ruby_xfree(tmpStr);
         
     | 
| 
      
 9598 
     | 
    
         
            +
                        tmpStr = NULL;
         
     | 
| 
       9599 
9599 
     | 
    
         
             
                      }
         
     | 
| 
       9600 
     | 
    
         
            -
                       
     | 
| 
       9601 
     | 
    
         
            -
             
     | 
| 
       9602 
     | 
    
         
            -
             
     | 
| 
       9603 
     | 
    
         
            -
             
     | 
| 
      
 9600 
     | 
    
         
            +
                      else
         
     | 
| 
      
 9601 
     | 
    
         
            +
                      {
         
     | 
| 
      
 9602 
     | 
    
         
            +
                        if ( op & FETCH_ASSOC ) {
         
     | 
| 
      
 9603 
     | 
    
         
            +
                          rb_hash_aset(return_value, colName, LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9604 
     | 
    
         
            +
                        }
         
     | 
| 
      
 9605 
     | 
    
         
            +
                        if ( op == FETCH_INDEX ) {
         
     | 
| 
      
 9606 
     | 
    
         
            +
                          rb_ary_store(return_value, i, LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9607 
     | 
    
         
            +
                        } else if ( op == FETCH_BOTH ) {
         
     | 
| 
      
 9608 
     | 
    
         
            +
                          rb_hash_aset(return_value, INT2NUM(i), LONG2NUM(atol((char *)row_data->str_val)));
         
     | 
| 
      
 9609 
     | 
    
         
            +
                        }
         
     | 
| 
       9604 
9610 
     | 
    
         
             
                      }
         
     | 
| 
       9605 
9611 
     | 
    
         | 
| 
       9606 
     | 
    
         
            -
                      ruby_xfree(tmpStr);
         
     | 
| 
       9607 
     | 
    
         
            -
                      tmpStr = NULL;
         
     | 
| 
       9608 
     | 
    
         
            -
             
     | 
| 
       9609 
9612 
     | 
    
         
             
                      break;
         
     | 
| 
       9610 
9613 
     | 
    
         
             
                    case SQL_SMALLINT:
         
     | 
| 
       9611 
9614 
     | 
    
         
             
                      if ( op & FETCH_ASSOC ) {
         
     | 
| 
         @@ -10073,8 +10076,7 @@ VALUE ibm_db_fetch_row(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       10073 
10076 
     | 
    
         
             
              helper_args->error       =  &error;
         
     | 
| 
       10074 
10077 
     | 
    
         | 
| 
       10075 
10078 
     | 
    
         
             
              #ifdef UNICODE_SUPPORT_VERSION_H
         
     | 
| 
       10076 
     | 
    
         
            -
             
     | 
| 
       10077 
     | 
    
         
            -
                                    RUBY_UBF_IO, NULL );
         
     | 
| 
      
 10079 
     | 
    
         
            +
                _ruby_ibm_db_fetch_row_helper( helper_args );
         
     | 
| 
       10078 
10080 
     | 
    
         
             
            	ret_val = helper_args->return_value;
         
     | 
| 
       10079 
10081 
     | 
    
         
             
              #else
         
     | 
| 
       10080 
10082 
     | 
    
         
             
                ret_val = _ruby_ibm_db_fetch_row_helper( helper_args );
         
     | 
| 
         @@ -10242,8 +10244,7 @@ VALUE ibm_db_fetch_assoc(int argc, VALUE *argv, VALUE self) { 
     | 
|
| 
       10242 
10244 
     | 
    
         
             
              helper_args->funcType   =  FETCH_ASSOC;
         
     | 
| 
       10243 
10245 
     | 
    
         | 
| 
       10244 
10246 
     | 
    
         
             
              #ifdef UNICODE_SUPPORT_VERSION_H
         
     | 
| 
       10245 
     | 
    
         
            -
             
     | 
| 
       10246 
     | 
    
         
            -
                                     RUBY_UBF_IO, NULL );
         
     | 
| 
      
 10247 
     | 
    
         
            +
                _ruby_ibm_db_bind_fetch_helper( helper_args );
         
     | 
| 
       10247 
10248 
     | 
    
         
             
            	ret_val = helper_args->return_value;
         
     | 
| 
       10248 
10249 
     | 
    
         | 
| 
       10249 
10250 
     | 
    
         
             
              #else
         
     | 
| 
         @@ -10562,7 +10563,7 @@ VALUE ibm_db_set_option(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       10562 
10563 
     | 
    
         
             
                  if ( !NIL_P(r_options) ) {
         
     | 
| 
       10563 
10564 
     | 
    
         
             
                    rc = _ruby_ibm_db_parse_options( r_options, SQL_HANDLE_DBC, conn_res, &error );
         
     | 
| 
       10564 
10565 
     | 
    
         
             
                    if (rc == SQL_ERROR) {
         
     | 
| 
       10565 
     | 
    
         
            -
                      rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 10566 
     | 
    
         
            +
                      rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       10566 
10567 
     | 
    
         
             
                      return Qfalse;
         
     | 
| 
       10567 
10568 
     | 
    
         
             
                    }
         
     | 
| 
       10568 
10569 
     | 
    
         
             
                  }
         
     | 
| 
         @@ -10572,7 +10573,7 @@ VALUE ibm_db_set_option(int argc, VALUE *argv, VALUE self) 
     | 
|
| 
       10572 
10573 
     | 
    
         
             
                  if ( !NIL_P(r_options) ) {
         
     | 
| 
       10573 
10574 
     | 
    
         
             
                    rc = _ruby_ibm_db_parse_options( r_options, SQL_HANDLE_STMT, stmt_res, &error );
         
     | 
| 
       10574 
10575 
     | 
    
         
             
                    if (rc == SQL_ERROR) {
         
     | 
| 
       10575 
     | 
    
         
            -
                      rb_warn( RSTRING_PTR(error) );
         
     | 
| 
      
 10576 
     | 
    
         
            +
                      rb_warn( "%s", RSTRING_PTR(error) );
         
     | 
| 
       10576 
10577 
     | 
    
         
             
                      return Qfalse;
         
     | 
| 
       10577 
10578 
     | 
    
         
             
                    }
         
     | 
| 
       10578 
10579 
     | 
    
         
             
                  }
         
     | 
    
        data/ext/ibm_db.o
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/ext/ibm_db.so
    CHANGED
    
    | 
         Binary file 
     |