Class: ActiveRecord::ConnectionAdapters::DepartureAdapter

Inherits:
AbstractMysqlAdapter
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/active_record/connection_adapters/percona_adapter.rb

Defined Under Namespace

Classes: Column

Constant Summary collapse

ADAPTER_NAME =
'Percona'.freeze

Instance Method Summary collapse

Constructor Details

#initialize(connection, _logger, connection_options, _config) ⇒ DepartureAdapter

Returns a new instance of DepartureAdapter.



50
51
52
53
54
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 50

def initialize(connection, _logger, connection_options, _config)
  super
  @visitor = BindSubstitution.new(self)
  @mysql_adapter = connection_options[:mysql_adapter]
end

Instance Method Details

#add_index(table_name, column_name, options = {}) ⇒ Object

Adds a new index to the table

Parameters:

  • table_name (String, Symbol)
  • column_name (String, Symbol)
  • options (Hash) (defaults to: {})

    optional



97
98
99
100
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 97

def add_index(table_name, column_name, options = {})
  index_name, index_type, index_columns, index_options = add_index_options(table_name, column_name, options)
  execute "ALTER TABLE #{quote_table_name(table_name)} ADD #{index_type} INDEX #{quote_column_name(index_name)} (#{index_columns})#{index_options}"
end

#error_number(_exception) ⇒ Object

Returns the MySQL error number from the exception. The AbstractMysqlAdapter requires it to be implemented



113
114
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 113

def error_number(_exception)
end

#exec_delete(sql, name, binds) ⇒ Object Also known as: exec_update



56
57
58
59
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 56

def exec_delete(sql, name, binds)
  execute(to_sql(sql, binds), name)
  @connection.affected_rows
end

#exec_insert(sql, name, binds) ⇒ Object



62
63
64
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 62

def exec_insert(sql, name, binds)
  execute(to_sql(sql, binds), name)
end

#exec_query(sql, name = 'SQL', _binds = []) ⇒ Object



66
67
68
69
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 66

def exec_query(sql, name = 'SQL', _binds = [])
  result = execute(sql, name)
  ActiveRecord::Result.new(result.fields, result.to_a)
end

#new_column(field, default, type, null, collation) ⇒ Object



88
89
90
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 88

def new_column(field, default, type, null, collation)
  Column.new(field, default, type, null, collation)
end

#remove_index(table_name, options = {}) ⇒ Object

Remove the given index from the table.

Parameters:

  • table_name (String, Symbol)
  • options (Hash) (defaults to: {})

    optional



106
107
108
109
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 106

def remove_index(table_name, options = {})
  index_name = index_name_for_remove(table_name, options)
  execute "ALTER TABLE #{quote_table_name(table_name)} DROP INDEX #{quote_column_name(index_name)}"
end

#select(sql, name = nil, binds = []) ⇒ Object

Executes a SELECT query and returns an array of record hashes with the column names as keys and column values as values.



79
80
81
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 79

def select(sql, name = nil, binds = [])
  exec_query(sql, name, binds).to_a
end

#select_rows(sql, name = nil) ⇒ Object

Executes a SELECT query and returns an array of rows. Each row is an array of field values.



73
74
75
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 73

def select_rows(sql, name = nil)
  execute(sql, name).to_a
end

#supports_migrations?Boolean

Returns true, as this adapter supports migrations

Returns:

  • (Boolean)


84
85
86
# File 'lib/active_record/connection_adapters/percona_adapter.rb', line 84

def supports_migrations?
  true
end