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.



388
389
390
391
392
393
394
395
396
397
398
# File 'lib/arjdbc/teradata/adapter.rb', line 388

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



400
401
# File 'lib/arjdbc/teradata/adapter.rb', line 400

def call_discovered_column_callbacks(*)
end