Class: ActiveRecord::ConnectionAdapters::MySQL::TypeMetadata

Inherits:
SqlTypeMetadata
  • Object
show all
Defined in:
lib/active_record/connection_adapters/mysql/type_metadata.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Attributes inherited from SqlTypeMetadata

#limit, #precision, #scale, #sql_type, #type

Instance Method Summary collapse

Constructor Details

#initialize(type_metadata, extra: "") ⇒ TypeMetadata

Returns a new instance of TypeMetadata.



9
10
11
12
13
# File 'lib/active_record/connection_adapters/mysql/type_metadata.rb', line 9

def initialize(, extra: "")
  super()
  @type_metadata = 
  @extra = extra
end

Instance Attribute Details

#extraObject (readonly)

Returns the value of attribute extra.



7
8
9
# File 'lib/active_record/connection_adapters/mysql/type_metadata.rb', line 7

def extra
  @extra
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



15
16
17
18
# File 'lib/active_record/connection_adapters/mysql/type_metadata.rb', line 15

def ==(other)
  other.is_a?(MySQL::TypeMetadata) &&
    attributes_for_hash == other.attributes_for_hash
end

#hashObject



21
22
23
# File 'lib/active_record/connection_adapters/mysql/type_metadata.rb', line 21

def hash
  attributes_for_hash.hash
end