activerecord 4.2.11.3 → 5.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1029 -1349
- data/MIT-LICENSE +1 -1
- data/README.rdoc +6 -7
- data/examples/performance.rb +2 -2
- data/lib/active_record.rb +7 -3
- data/lib/active_record/aggregations.rb +35 -25
- data/lib/active_record/association_relation.rb +2 -2
- data/lib/active_record/associations.rb +305 -204
- data/lib/active_record/associations/alias_tracker.rb +19 -16
- data/lib/active_record/associations/association.rb +10 -8
- data/lib/active_record/associations/association_scope.rb +73 -102
- data/lib/active_record/associations/belongs_to_association.rb +20 -32
- data/lib/active_record/associations/builder/association.rb +28 -34
- data/lib/active_record/associations/builder/belongs_to.rb +41 -18
- data/lib/active_record/associations/builder/collection_association.rb +8 -24
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +11 -11
- data/lib/active_record/associations/builder/has_many.rb +4 -4
- data/lib/active_record/associations/builder/has_one.rb +10 -5
- data/lib/active_record/associations/builder/singular_association.rb +2 -9
- data/lib/active_record/associations/collection_association.rb +40 -43
- data/lib/active_record/associations/collection_proxy.rb +55 -29
- data/lib/active_record/associations/foreign_association.rb +1 -1
- data/lib/active_record/associations/has_many_association.rb +20 -71
- data/lib/active_record/associations/has_many_through_association.rb +8 -52
- data/lib/active_record/associations/has_one_association.rb +12 -5
- data/lib/active_record/associations/join_dependency.rb +28 -18
- data/lib/active_record/associations/join_dependency/join_association.rb +13 -12
- data/lib/active_record/associations/preloader.rb +13 -4
- data/lib/active_record/associations/preloader/association.rb +45 -51
- data/lib/active_record/associations/preloader/collection_association.rb +0 -6
- data/lib/active_record/associations/preloader/has_many_through.rb +1 -1
- data/lib/active_record/associations/preloader/has_one.rb +0 -8
- data/lib/active_record/associations/preloader/through_association.rb +5 -4
- data/lib/active_record/associations/singular_association.rb +6 -0
- data/lib/active_record/associations/through_association.rb +11 -3
- data/lib/active_record/attribute.rb +61 -17
- data/lib/active_record/attribute/user_provided_default.rb +23 -0
- data/lib/active_record/attribute_assignment.rb +27 -140
- data/lib/active_record/attribute_decorators.rb +6 -5
- data/lib/active_record/attribute_methods.rb +79 -26
- data/lib/active_record/attribute_methods/before_type_cast.rb +1 -1
- data/lib/active_record/attribute_methods/dirty.rb +46 -86
- data/lib/active_record/attribute_methods/primary_key.rb +2 -2
- data/lib/active_record/attribute_methods/query.rb +2 -2
- data/lib/active_record/attribute_methods/read.rb +26 -42
- data/lib/active_record/attribute_methods/serialization.rb +13 -16
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +42 -9
- data/lib/active_record/attribute_methods/write.rb +13 -24
- data/lib/active_record/attribute_mutation_tracker.rb +70 -0
- data/lib/active_record/attribute_set.rb +30 -3
- data/lib/active_record/attribute_set/builder.rb +6 -4
- data/lib/active_record/attributes.rb +194 -81
- data/lib/active_record/autosave_association.rb +33 -15
- data/lib/active_record/base.rb +30 -18
- data/lib/active_record/callbacks.rb +36 -40
- data/lib/active_record/coders/yaml_column.rb +20 -8
- data/lib/active_record/collection_cache_key.rb +31 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +431 -122
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +3 -3
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +40 -22
- data/lib/active_record/connection_adapters/abstract/quoting.rb +62 -8
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +46 -38
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +229 -185
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +52 -13
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +275 -115
- data/lib/active_record/connection_adapters/abstract/transaction.rb +32 -33
- data/lib/active_record/connection_adapters/abstract_adapter.rb +83 -32
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +384 -221
- data/lib/active_record/connection_adapters/column.rb +27 -41
- data/lib/active_record/connection_adapters/connection_specification.rb +2 -21
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +22 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +57 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +69 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +59 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +22 -101
- data/lib/active_record/connection_adapters/postgresql/column.rb +6 -10
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +3 -3
- data/lib/active_record/connection_adapters/postgresql/oid.rb +1 -6
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +23 -57
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +7 -22
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +3 -3
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +1 -26
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +0 -2
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +4 -4
- data/lib/active_record/connection_adapters/postgresql/oid/rails_5_1_point.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +23 -16
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +0 -4
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +2 -2
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +18 -11
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +29 -10
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +107 -79
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +54 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +174 -128
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +35 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +184 -112
- data/lib/active_record/connection_adapters/schema_cache.rb +36 -23
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +32 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +15 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +134 -110
- data/lib/active_record/connection_adapters/statement_pool.rb +28 -11
- data/lib/active_record/connection_handling.rb +5 -5
- data/lib/active_record/core.rb +72 -104
- data/lib/active_record/counter_cache.rb +9 -20
- data/lib/active_record/dynamic_matchers.rb +1 -20
- data/lib/active_record/enum.rb +110 -76
- data/lib/active_record/errors.rb +72 -47
- data/lib/active_record/explain_registry.rb +1 -1
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +19 -4
- data/lib/active_record/fixtures.rb +76 -40
- data/lib/active_record/gem_version.rb +4 -4
- data/lib/active_record/inheritance.rb +27 -40
- data/lib/active_record/integration.rb +4 -4
- data/lib/active_record/legacy_yaml_adapter.rb +18 -2
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +10 -14
- data/lib/active_record/locking/pessimistic.rb +1 -1
- data/lib/active_record/log_subscriber.rb +40 -22
- data/lib/active_record/migration.rb +304 -133
- data/lib/active_record/migration/command_recorder.rb +59 -18
- data/lib/active_record/migration/compatibility.rb +90 -0
- data/lib/active_record/model_schema.rb +92 -40
- data/lib/active_record/nested_attributes.rb +45 -34
- data/lib/active_record/null_relation.rb +15 -7
- data/lib/active_record/persistence.rb +112 -72
- data/lib/active_record/querying.rb +6 -5
- data/lib/active_record/railtie.rb +20 -13
- data/lib/active_record/railties/controller_runtime.rb +1 -1
- data/lib/active_record/railties/databases.rake +47 -38
- data/lib/active_record/readonly_attributes.rb +1 -1
- data/lib/active_record/reflection.rb +182 -57
- data/lib/active_record/relation.rb +152 -100
- data/lib/active_record/relation/batches.rb +133 -33
- data/lib/active_record/relation/batches/batch_enumerator.rb +67 -0
- data/lib/active_record/relation/calculations.rb +80 -101
- data/lib/active_record/relation/delegation.rb +6 -19
- data/lib/active_record/relation/finder_methods.rb +58 -46
- data/lib/active_record/relation/from_clause.rb +32 -0
- data/lib/active_record/relation/merger.rb +13 -42
- data/lib/active_record/relation/predicate_builder.rb +99 -105
- data/lib/active_record/relation/predicate_builder/array_handler.rb +11 -16
- data/lib/active_record/relation/predicate_builder/association_query_handler.rb +78 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +17 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +17 -0
- data/lib/active_record/relation/predicate_builder/class_handler.rb +27 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +17 -0
- data/lib/active_record/relation/query_attribute.rb +19 -0
- data/lib/active_record/relation/query_methods.rb +274 -238
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +3 -6
- data/lib/active_record/relation/where_clause.rb +173 -0
- data/lib/active_record/relation/where_clause_factory.rb +37 -0
- data/lib/active_record/result.rb +4 -3
- data/lib/active_record/runtime_registry.rb +1 -1
- data/lib/active_record/sanitization.rb +94 -65
- data/lib/active_record/schema.rb +23 -22
- data/lib/active_record/schema_dumper.rb +33 -22
- data/lib/active_record/schema_migration.rb +10 -4
- data/lib/active_record/scoping.rb +17 -6
- data/lib/active_record/scoping/default.rb +19 -6
- data/lib/active_record/scoping/named.rb +39 -28
- data/lib/active_record/secure_token.rb +38 -0
- data/lib/active_record/serialization.rb +2 -4
- data/lib/active_record/statement_cache.rb +15 -13
- data/lib/active_record/store.rb +8 -3
- data/lib/active_record/suppressor.rb +54 -0
- data/lib/active_record/table_metadata.rb +64 -0
- data/lib/active_record/tasks/database_tasks.rb +30 -40
- data/lib/active_record/tasks/mysql_database_tasks.rb +7 -15
- data/lib/active_record/tasks/postgresql_database_tasks.rb +11 -2
- data/lib/active_record/tasks/sqlite_database_tasks.rb +5 -1
- data/lib/active_record/timestamp.rb +16 -9
- data/lib/active_record/touch_later.rb +58 -0
- data/lib/active_record/transactions.rb +138 -56
- data/lib/active_record/type.rb +66 -17
- data/lib/active_record/type/adapter_specific_registry.rb +130 -0
- data/lib/active_record/type/date.rb +2 -45
- data/lib/active_record/type/date_time.rb +2 -49
- data/lib/active_record/type/internal/abstract_json.rb +33 -0
- data/lib/active_record/type/internal/timezone.rb +15 -0
- data/lib/active_record/type/serialized.rb +9 -14
- data/lib/active_record/type/time.rb +3 -21
- data/lib/active_record/type/type_map.rb +4 -4
- data/lib/active_record/type_caster.rb +7 -0
- data/lib/active_record/type_caster/connection.rb +29 -0
- data/lib/active_record/type_caster/map.rb +19 -0
- data/lib/active_record/validations.rb +33 -32
- data/lib/active_record/validations/absence.rb +24 -0
- data/lib/active_record/validations/associated.rb +10 -3
- data/lib/active_record/validations/length.rb +36 -0
- data/lib/active_record/validations/presence.rb +12 -12
- data/lib/active_record/validations/uniqueness.rb +24 -21
- data/lib/rails/generators/active_record/migration.rb +7 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +7 -4
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +8 -3
- data/lib/rails/generators/active_record/migration/templates/migration.rb +4 -1
- data/lib/rails/generators/active_record/model/model_generator.rb +21 -15
- data/lib/rails/generators/active_record/model/templates/model.rb +3 -0
- metadata +50 -35
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -498
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +0 -11
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/infinity.rb +0 -13
- data/lib/active_record/connection_adapters/postgresql/oid/integer.rb +0 -11
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -31
- data/lib/active_record/type/decimal.rb +0 -64
- data/lib/active_record/type/decimal_without_scale.rb +0 -11
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -59
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -40
- data/lib/active_record/type/text.rb +0 -11
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/unsigned_integer.rb +0 -15
- data/lib/active_record/type/value.rb +0 -110
@@ -1,64 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
class Decimal < Value # :nodoc:
|
4
|
-
include Numeric
|
5
|
-
|
6
|
-
def type
|
7
|
-
:decimal
|
8
|
-
end
|
9
|
-
|
10
|
-
def type_cast_for_schema(value)
|
11
|
-
value.to_s
|
12
|
-
end
|
13
|
-
|
14
|
-
private
|
15
|
-
|
16
|
-
def cast_value(value)
|
17
|
-
casted_value = case value
|
18
|
-
when ::Float
|
19
|
-
convert_float_to_big_decimal(value)
|
20
|
-
when ::Numeric
|
21
|
-
BigDecimal(value, precision.to_i)
|
22
|
-
when ::String
|
23
|
-
begin
|
24
|
-
value.to_d
|
25
|
-
rescue ArgumentError
|
26
|
-
BigDecimal(0)
|
27
|
-
end
|
28
|
-
else
|
29
|
-
if value.respond_to?(:to_d)
|
30
|
-
value.to_d
|
31
|
-
else
|
32
|
-
cast_value(value.to_s)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
apply_scale(casted_value)
|
37
|
-
end
|
38
|
-
|
39
|
-
def convert_float_to_big_decimal(value)
|
40
|
-
if precision
|
41
|
-
BigDecimal(apply_scale(value), float_precision)
|
42
|
-
else
|
43
|
-
value.to_d
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
def float_precision
|
48
|
-
if precision.to_i > ::Float::DIG + 1
|
49
|
-
::Float::DIG + 1
|
50
|
-
else
|
51
|
-
precision.to_i
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
def apply_scale(value)
|
56
|
-
if scale
|
57
|
-
value.round(scale)
|
58
|
-
else
|
59
|
-
value
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
@@ -1,59 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
class Integer < Value # :nodoc:
|
4
|
-
include Numeric
|
5
|
-
|
6
|
-
def initialize(*)
|
7
|
-
super
|
8
|
-
@range = min_value...max_value
|
9
|
-
end
|
10
|
-
|
11
|
-
def type
|
12
|
-
:integer
|
13
|
-
end
|
14
|
-
|
15
|
-
def type_cast_from_database(value)
|
16
|
-
return if value.nil?
|
17
|
-
value.to_i
|
18
|
-
end
|
19
|
-
|
20
|
-
def type_cast_for_database(value)
|
21
|
-
result = type_cast(value)
|
22
|
-
if result
|
23
|
-
ensure_in_range(result)
|
24
|
-
end
|
25
|
-
result
|
26
|
-
end
|
27
|
-
|
28
|
-
protected
|
29
|
-
|
30
|
-
attr_reader :range
|
31
|
-
|
32
|
-
private
|
33
|
-
|
34
|
-
def cast_value(value)
|
35
|
-
case value
|
36
|
-
when true then 1
|
37
|
-
when false then 0
|
38
|
-
else
|
39
|
-
value.to_i rescue nil
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def ensure_in_range(value)
|
44
|
-
unless range.cover?(value)
|
45
|
-
raise RangeError, "#{value} is out of range for #{self.class} with limit #{limit || 4}"
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
def max_value
|
50
|
-
limit = self.limit || 4
|
51
|
-
1 << (limit * 8 - 1) # 8 bits per byte with one bit for sign
|
52
|
-
end
|
53
|
-
|
54
|
-
def min_value
|
55
|
-
-max_value
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
module Mutable # :nodoc:
|
4
|
-
def type_cast_from_user(value)
|
5
|
-
type_cast_from_database(type_cast_for_database(value))
|
6
|
-
end
|
7
|
-
|
8
|
-
# +raw_old_value+ will be the `_before_type_cast` version of the
|
9
|
-
# value (likely a string). +new_value+ will be the current, type
|
10
|
-
# cast value.
|
11
|
-
def changed_in_place?(raw_old_value, new_value)
|
12
|
-
raw_old_value != type_cast_for_database(new_value)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
module Numeric # :nodoc:
|
4
|
-
def number?
|
5
|
-
true
|
6
|
-
end
|
7
|
-
|
8
|
-
def type_cast(value)
|
9
|
-
value = case value
|
10
|
-
when true then 1
|
11
|
-
when false then 0
|
12
|
-
when ::String then value.presence
|
13
|
-
else value
|
14
|
-
end
|
15
|
-
super(value)
|
16
|
-
end
|
17
|
-
|
18
|
-
def changed?(old_value, _new_value, new_value_before_type_cast) # :nodoc:
|
19
|
-
super || number_to_non_number?(old_value, new_value_before_type_cast)
|
20
|
-
end
|
21
|
-
|
22
|
-
private
|
23
|
-
|
24
|
-
def number_to_non_number?(old_value, new_value_before_type_cast)
|
25
|
-
old_value != nil && non_numeric_string?(new_value_before_type_cast)
|
26
|
-
end
|
27
|
-
|
28
|
-
def non_numeric_string?(value)
|
29
|
-
# 'wibble'.to_i will give zero, we want to make sure
|
30
|
-
# that we aren't marking int zero to string zero as
|
31
|
-
# changed.
|
32
|
-
value.to_s !~ /\A-?\d+\.?\d*\z/
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
@@ -1,40 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
class String < Value # :nodoc:
|
4
|
-
def type
|
5
|
-
:string
|
6
|
-
end
|
7
|
-
|
8
|
-
def changed_in_place?(raw_old_value, new_value)
|
9
|
-
if new_value.is_a?(::String)
|
10
|
-
raw_old_value != new_value
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
def type_cast_for_database(value)
|
15
|
-
case value
|
16
|
-
when ::Numeric, ActiveSupport::Duration then value.to_s
|
17
|
-
when ::String then ::String.new(value)
|
18
|
-
when true then "t"
|
19
|
-
when false then "f"
|
20
|
-
else super
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
def text?
|
25
|
-
true
|
26
|
-
end
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
def cast_value(value)
|
31
|
-
case value
|
32
|
-
when true then "t"
|
33
|
-
when false then "f"
|
34
|
-
# String.new is slightly faster than dup
|
35
|
-
else ::String.new(value.to_s)
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
module TimeValue # :nodoc:
|
4
|
-
def klass
|
5
|
-
::Time
|
6
|
-
end
|
7
|
-
|
8
|
-
def type_cast_for_schema(value)
|
9
|
-
"'#{value.to_s(:db)}'"
|
10
|
-
end
|
11
|
-
|
12
|
-
private
|
13
|
-
|
14
|
-
def new_time(year, mon, mday, hour, min, sec, microsec, offset = nil)
|
15
|
-
# Treat 0000-00-00 00:00:00 as nil.
|
16
|
-
return if year.nil? || (year == 0 && mon == 0 && mday == 0)
|
17
|
-
|
18
|
-
if offset
|
19
|
-
time = ::Time.utc(year, mon, mday, hour, min, sec, microsec) rescue nil
|
20
|
-
return unless time
|
21
|
-
|
22
|
-
time -= offset
|
23
|
-
Base.default_timezone == :utc ? time : time.getlocal
|
24
|
-
else
|
25
|
-
::Time.public_send(Base.default_timezone, year, mon, mday, hour, min, sec, microsec) rescue nil
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
# Doesn't handle time zones.
|
30
|
-
def fast_string_to_time(string)
|
31
|
-
if string =~ ConnectionAdapters::Column::Format::ISO_DATETIME
|
32
|
-
microsec = ($7.to_r * 1_000_000).to_i
|
33
|
-
new_time $1.to_i, $2.to_i, $3.to_i, $4.to_i, $5.to_i, $6.to_i, microsec
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,110 +0,0 @@
|
|
1
|
-
module ActiveRecord
|
2
|
-
module Type
|
3
|
-
class Value # :nodoc:
|
4
|
-
attr_reader :precision, :scale, :limit
|
5
|
-
|
6
|
-
# Valid options are +precision+, +scale+, and +limit+. They are only
|
7
|
-
# used when dumping schema.
|
8
|
-
def initialize(options = {})
|
9
|
-
options.assert_valid_keys(:precision, :scale, :limit)
|
10
|
-
@precision = options[:precision]
|
11
|
-
@scale = options[:scale]
|
12
|
-
@limit = options[:limit]
|
13
|
-
end
|
14
|
-
|
15
|
-
# The simplified type that this object represents. Returns a symbol such
|
16
|
-
# as +:string+ or +:integer+
|
17
|
-
def type; end
|
18
|
-
|
19
|
-
# Type casts a string from the database into the appropriate ruby type.
|
20
|
-
# Classes which do not need separate type casting behavior for database
|
21
|
-
# and user provided values should override +cast_value+ instead.
|
22
|
-
def type_cast_from_database(value)
|
23
|
-
type_cast(value)
|
24
|
-
end
|
25
|
-
|
26
|
-
# Type casts a value from user input (e.g. from a setter). This value may
|
27
|
-
# be a string from the form builder, or an already type cast value
|
28
|
-
# provided manually to a setter.
|
29
|
-
#
|
30
|
-
# Classes which do not need separate type casting behavior for database
|
31
|
-
# and user provided values should override +type_cast+ or +cast_value+
|
32
|
-
# instead.
|
33
|
-
def type_cast_from_user(value)
|
34
|
-
type_cast(value)
|
35
|
-
end
|
36
|
-
|
37
|
-
# Cast a value from the ruby type to a type that the database knows how
|
38
|
-
# to understand. The returned value from this method should be a
|
39
|
-
# +String+, +Numeric+, +Date+, +Time+, +Symbol+, +true+, +false+, or
|
40
|
-
# +nil+
|
41
|
-
def type_cast_for_database(value)
|
42
|
-
value
|
43
|
-
end
|
44
|
-
|
45
|
-
# Type cast a value for schema dumping. This method is private, as we are
|
46
|
-
# hoping to remove it entirely.
|
47
|
-
def type_cast_for_schema(value) # :nodoc:
|
48
|
-
value.inspect
|
49
|
-
end
|
50
|
-
|
51
|
-
# These predicates are not documented, as I need to look further into
|
52
|
-
# their use, and see if they can be removed entirely.
|
53
|
-
def text? # :nodoc:
|
54
|
-
false
|
55
|
-
end
|
56
|
-
|
57
|
-
def number? # :nodoc:
|
58
|
-
false
|
59
|
-
end
|
60
|
-
|
61
|
-
def binary? # :nodoc:
|
62
|
-
false
|
63
|
-
end
|
64
|
-
|
65
|
-
def klass # :nodoc:
|
66
|
-
end
|
67
|
-
|
68
|
-
# Determines whether a value has changed for dirty checking. +old_value+
|
69
|
-
# and +new_value+ will always be type-cast. Types should not need to
|
70
|
-
# override this method.
|
71
|
-
def changed?(old_value, new_value, _new_value_before_type_cast)
|
72
|
-
old_value != new_value
|
73
|
-
end
|
74
|
-
|
75
|
-
# Determines whether the mutable value has been modified since it was
|
76
|
-
# read. Returns +false+ by default. This method should not be overridden
|
77
|
-
# directly. Types which return a mutable value should include
|
78
|
-
# +Type::Mutable+, which will define this method.
|
79
|
-
def changed_in_place?(*)
|
80
|
-
false
|
81
|
-
end
|
82
|
-
|
83
|
-
def ==(other)
|
84
|
-
self.class == other.class &&
|
85
|
-
precision == other.precision &&
|
86
|
-
scale == other.scale &&
|
87
|
-
limit == other.limit
|
88
|
-
end
|
89
|
-
alias eql? ==
|
90
|
-
|
91
|
-
def hash
|
92
|
-
[self.class, precision, scale, limit].hash
|
93
|
-
end
|
94
|
-
|
95
|
-
private
|
96
|
-
|
97
|
-
def type_cast(value)
|
98
|
-
cast_value(value) unless value.nil?
|
99
|
-
end
|
100
|
-
|
101
|
-
# Convenience method for types which do not need separate type casting
|
102
|
-
# behavior for user and database inputs. Called by
|
103
|
-
# `type_cast_from_database` and `type_cast_from_user` for all values
|
104
|
-
# except `nil`.
|
105
|
-
def cast_value(value) # :doc:
|
106
|
-
value
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end
|