Class: ActiveRecord::ConnectionAdapters::TeradataColumn

Inherits:
JdbcColumn
  • Object
show all
Includes:
ArJdbc::Teradata::Column
Defined in:
lib/arjdbc/teradata/adapter.rb

Instance Method Summary collapse

Methods included from ArJdbc::Teradata::Column

#simplified_type

Constructor Details

#initialize(name, *args) ⇒ TeradataColumn

Returns a new instance of TeradataColumn.



429
430
431
432
433
434
435
436
437
438
439
# File 'lib/arjdbc/teradata/adapter.rb', line 429

def initialize(name, *args)

  if Hash === name
    if name.has_key? :adapter_class
      args[0].downcase! if name[:adapter_class].lowercase_schema_reflection
    end
    super
  else
    super(nil, name, *args)
  end
end

Instance Method Details

#call_discovered_column_callbacksObject



441
442
# File 'lib/arjdbc/teradata/adapter.rb', line 441

def call_discovered_column_callbacks(*)
end