Class: ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter

Inherits:
AbstractAdapter
  • Object
show all
Includes:
Savepoints
Defined in:
lib/active_record/connection_adapters/abstract_mysql_adapter.rb

Direct Known Subclasses

HbaseAdapter

Defined Under Namespace

Classes: BindSubstitution, Column, SchemaCreation

Constant Summary collapse

LOST_CONNECTION_ERROR_MESSAGES =
[
"Server shutdown in progress",
"Broken pipe",
"Lost connection to MySQL server during query",
"MySQL server has gone away" ]
NATIVE_DATABASE_TYPES =
{
  :primary_key => "int(11) auto_increment PRIMARY KEY",
  :string      => { :name => "varchar", :limit => 255 },
  :text        => { :name => "text" },
  :integer     => { :name => "int", :limit => 4 },
  :float       => { :name => "float" },
  :decimal     => { :name => "decimal" },
  :datetime    => { :name => "datetime" },
  :timestamp   => { :name => "datetime" },
  :time        => { :name => "time" },
  :date        => { :name => "date" },
  :binary      => { :name => "blob" },
  :boolean     => { :name => "tinyint", :limit => 1 }
}
INDEX_TYPES =
[:fulltext, :spatial]
INDEX_USINGS =
[:btree, :hash]

Instance Method Summary collapse

Constructor Details

#initialize(connection, logger, connection_options, config) ⇒ AbstractMysqlAdapter

FIXME: Make the first parameter more similar for the two adapters



175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 175

def initialize(connection, logger, connection_options, config)
  super(connection, logger)
  @connection_options, @config = connection_options, config
  @quoted_column_names, @quoted_table_names = {}, {}

  if self.class.type_cast_config_to_boolean(config.fetch(:prepared_statements) { true })
    @prepared_statements = true
    @visitor = Arel::Visitors::MySQL.new self
  else
    @visitor = unprepared_visitor
  end
end

Instance Method Details

#adapter_nameObject

:nodoc:



188
189
190
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 188

def adapter_name #:nodoc:
  self.class::ADAPTER_NAME
end

#add_column_position!(sql, options) ⇒ Object



568
569
570
571
572
573
574
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 568

def add_column_position!(sql, options)
  if options[:first]
    sql << " FIRST"
  elsif options[:after]
    sql << " AFTER #{quote_column_name(options[:after])}"
  end
end

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

:nodoc:



531
532
533
534
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 531

def add_index(table_name, column_name, options = {}) #:nodoc:
  index_name, index_type, index_columns, index_options, index_algorithm, index_using = add_index_options(table_name, column_name, options)
  execute "CREATE #{index_type} INDEX #{quote_column_name(index_name)} #{index_using} ON #{quote_table_name(table_name)} (#{index_columns})#{index_options} #{index_algorithm}"
end

#begin_db_transactionObject



324
325
326
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 324

def begin_db_transaction
  execute "BEGIN"
end

#begin_isolated_db_transaction(isolation) ⇒ Object



328
329
330
331
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 328

def begin_isolated_db_transaction(isolation)
  execute "SET TRANSACTION ISOLATION LEVEL #{transaction_isolation_levels.fetch(isolation)}"
  begin_db_transaction
end

#bulk_change_table(table_name, operations) ⇒ Object

:nodoc:



471
472
473
474
475
476
477
478
479
480
481
482
483
484
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 471

def bulk_change_table(table_name, operations) #:nodoc:
  sqls = operations.map do |command, args|
    table, arguments = args.shift, args
    method = :"#{command}_sql"

    if respond_to?(method, true)
      send(method, table, *arguments)
    else
      raise "Unknown method called : #{method}(#{arguments.inspect})"
    end
  end.flatten.join(", ")

  execute("ALTER TABLE #{quote_table_name(table_name)} #{sqls}")
end

#case_insensitive_comparison(table, attribute, column, value) ⇒ Object



606
607
608
609
610
611
612
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 606

def case_insensitive_comparison(table, attribute, column, value)
  if column.case_sensitive?
    super
  else
    table[attribute].eq(value)
  end
end

#case_sensitive_modifier(node) ⇒ Object



602
603
604
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 602

def case_sensitive_modifier(node)
  Arel::Nodes::Bin.new(node)
end

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

:nodoc:



522
523
524
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 522

def change_column(table_name, column_name, type, options = {}) #:nodoc:
  execute("ALTER TABLE #{quote_table_name(table_name)} #{change_column_sql(table_name, column_name, type, options)}")
end

#change_column_default(table_name, column_name, default) ⇒ Object



507
508
509
510
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 507

def change_column_default(table_name, column_name, default)
  column = column_for(table_name, column_name)
  change_column table_name, column_name, column.sql_type, :default => default
end

#change_column_null(table_name, column_name, null, default = nil) ⇒ Object



512
513
514
515
516
517
518
519
520
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 512

def change_column_null(table_name, column_name, null, default = nil)
  column = column_for(table_name, column_name)

  unless null || default.nil?
    execute("UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(column_name)}=#{quote(default)} WHERE #{quote_column_name(column_name)} IS NULL")
  end

  change_column table_name, column_name, column.sql_type, :null => null
end

#charsetObject

Returns the database character set.



396
397
398
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 396

def charset
  show_variable 'character_set_database'
end

#collationObject

Returns the database collation strategy.



401
402
403
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 401

def collation
  show_variable 'collation_database'
end

#columns(table_name) ⇒ Object

Returns an array of Column objects for the table specified by table_name.



456
457
458
459
460
461
462
463
464
465
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 456

def columns(table_name)#:nodoc:
  sql = "SHOW FULL FIELDS FROM #{quote_table_name(table_name)}"
  execute_and_free(sql, 'SCHEMA') do |result|
    each_hash(result).map do |field|
      #binding.pry
      field_name = set_field_encoding(field[:Field])
      new_column(field_name, field[:Default], field[:Type], field[:Null] == "YES", field[:Collation], field[:Extra])
    end
  end
end

#commit_db_transactionObject

:nodoc:



333
334
335
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 333

def commit_db_transaction #:nodoc:
  execute "COMMIT"
end

#create_database(name, options = {}) ⇒ Object

Create a new MySQL database with optional :charset and :collation. Charset defaults to utf8.

Example:

create_database 'charset_test', charset: 'latin1', collation: 'latin1_bin'
create_database 'matt_development'
create_database 'matt_development', charset: :big5


375
376
377
378
379
380
381
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 375

def create_database(name, options = {})
  if options[:collation]
    execute "CREATE DATABASE `#{name}` DEFAULT CHARACTER SET `#{options[:charset] || 'utf8'}` COLLATE `#{options[:collation]}`"
  else
    execute "CREATE DATABASE `#{name}` DEFAULT CHARACTER SET `#{options[:charset] || 'utf8'}`"
  end
end

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

:nodoc:



467
468
469
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 467

def create_table(table_name, options = {}) #:nodoc:
  super(table_name, options.reverse_merge(:options => "ENGINE=InnoDB"))
end

#current_databaseObject



391
392
393
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 391

def current_database
  select_value 'SELECT DATABASE() as db'
end

#disable_referential_integrityObject

REFERENTIAL INTEGRITY ====================================



288
289
290
291
292
293
294
295
296
297
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 288

def disable_referential_integrity #:nodoc:
  old = select_value("SELECT @@FOREIGN_KEY_CHECKS")

  begin
    update("SET FOREIGN_KEY_CHECKS = 0")
    yield
  ensure
    update("SET FOREIGN_KEY_CHECKS = #{old}")
  end
end

#drop_database(name) ⇒ Object

Drops a MySQL database.

Example:

drop_database('sebastian_development')


387
388
389
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 387

def drop_database(name) #:nodoc:
  execute "DROP DATABASE IF EXISTS `#{name}`"
end

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



495
496
497
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 495

def drop_table(table_name, options = {})
  execute "DROP#{' TEMPORARY' if options[:temporary]} TABLE #{quote_table_name(table_name)}"
end

#each_hash(result) ⇒ Object

The two drivers have slightly different ways of yielding hashes of results, so this method must be implemented to provide a uniform interface.

Raises:

  • (NotImplementedError)


242
243
244
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 242

def each_hash(result) # :nodoc:
  raise NotImplementedError
end

#empty_insert_statement_valueObject



353
354
355
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 353

def empty_insert_statement_value
  "VALUES ()"
end

#emulate_booleansObject

:singleton-method: By default, the MysqlAdapter will consider all columns of type tinyint(1) as boolean. If you wish to disable this emulation (which was the default behavior in versions 0.13.1 and earlier) you can add the following line to your application.rb file:

ActiveRecord::ConnectionAdapters::Mysql[2]Adapter.emulate_booleans = false


141
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 141

class_attribute :emulate_booleans

#error_number(exception) ⇒ Object

Must return the Mysql error number from the exception, if the exception has an error number.

Raises:

  • (NotImplementedError)


253
254
255
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 253

def error_number(exception) # :nodoc:
  raise NotImplementedError
end

#execute(sql, name = nil) ⇒ Object

Executes the SQL statement in the context of this connection.



302
303
304
305
306
307
308
309
310
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 302

def execute(sql, name = nil)
  File.open('/tmp/thing.txt', 'a') { |file| file.write("\n\n!!!execute\n#{sql}") }
  #result = @connection.query('SELECT `mythings`.* FROM `mythings`')
  result = @connection.query(sql)
  File.open('/tmp/thing.txt', 'a') { |file| file.write("\n#{result.inspect}") }
  #binding.pry if sql == "SHOW FULL FIELDS FROM `schema_migrations`"
  #puts $the_e.inspect
  log(sql, name) { result }
end

#execute_and_free(sql, name = nil) {|execute(sql, name)| ... } ⇒ Object

MysqlAdapter has to free a result after using it, so we use this method to write stuff in an abstract way without concerning ourselves about whether it needs to be explicitly freed or not.

Yields:



315
316
317
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 315

def execute_and_free(sql, name = nil) #:nodoc:
  yield execute(sql, name)
end

#index_algorithmsObject



234
235
236
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 234

def index_algorithms
  { default: 'ALGORITHM = DEFAULT', copy: 'ALGORITHM = COPY', inplace: 'ALGORITHM = INPLACE' }
end

#indexes(table_name, name = nil) ⇒ Object

Returns an array of indexes for the given table.



432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 432

def indexes(table_name, name = nil) #:nodoc:
  indexes = []
  current_index = nil
  execute_and_free("SHOW KEYS FROM #{quote_table_name(table_name)}", 'SCHEMA') do |result|
    each_hash(result) do |row|
      if current_index != row[:Key_name]
        next if row[:Key_name] == 'PRIMARY' # skip the primary key
        current_index = row[:Key_name]

        mysql_index_type = row[:Index_type].downcase.to_sym
        index_type  = INDEX_TYPES.include?(mysql_index_type)  ? mysql_index_type : nil
        index_using = INDEX_USINGS.include?(mysql_index_type) ? mysql_index_type : nil
        indexes << IndexDefinition.new(row[:Table], row[:Key_name], row[:Non_unique].to_i == 0, [], [], nil, nil, index_type, index_using)
      end

      indexes.last.columns << row[:Column_name]
      indexes.last.lengths << row[:Sub_part]
    end
  end

  indexes
end

#join_to_update(update, select) ⇒ Object

In the simple case, MySQL allows us to place JOINs directly into the UPDATE query. However, this does not allow for LIMIT, OFFSET and ORDER. To support these, we must use a subquery.



344
345
346
347
348
349
350
351
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 344

def join_to_update(update, select) #:nodoc:
  if select.limit || select.offset || select.orders.any?
    super
  else
    update.table select.source
    update.wheres = select.constraints
  end
end

#limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key) ⇒ Object



614
615
616
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 614

def limited_update_conditions(where_sql, quoted_table_name, quoted_primary_key)
  where_sql
end

#native_database_typesObject



230
231
232
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 230

def native_database_types
  NATIVE_DATABASE_TYPES
end

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

Overridden by the adapters to instantiate their specific Column type.



247
248
249
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 247

def new_column(field, default, type, null, collation, extra = "") # :nodoc:
  Column.new(field, default, type, null, collation, extra)
end

#pk_and_sequence_for(table) ⇒ Object

Returns a table’s primary key and belonging sequence.



583
584
585
586
587
588
589
590
591
592
593
594
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 583

def pk_and_sequence_for(table)
  execute_and_free("SHOW CREATE TABLE #{quote_table_name(table)}", 'SCHEMA') do |result|
    #binding.pry
    create_table = each_hash(result).first[:"Create Table"]
    if create_table.to_s =~ /PRIMARY KEY\s+(?:USING\s+\w+\s+)?\((.+)\)/
      keys = $1.split(",").map { |key| key.delete('`"') }
      keys.length == 1 ? [keys.first, nil] : nil
    else
      nil
    end
  end
end

#primary_key(table) ⇒ Object

Returns just a table’s primary key



597
598
599
600
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 597

def primary_key(table)
  pk_and_sequence = pk_and_sequence_for(table)
  pk_and_sequence && pk_and_sequence.first
end

#quote(value, column = nil) ⇒ Object

QUOTING ==================================================



259
260
261
262
263
264
265
266
267
268
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 259

def quote(value, column = nil)
  if value.kind_of?(String) && column && column.type == :binary
    s = value.unpack("H*")[0]
    "x'#{s}'"
  elsif value.kind_of?(BigDecimal)
    value.to_s("F")
  else
    super
  end
end

#quote_column_name(name) ⇒ Object

:nodoc:



270
271
272
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 270

def quote_column_name(name) #:nodoc:
  @quoted_column_names[name] ||= "`#{name.to_s.gsub('`', '``')}`"
end

#quote_table_name(name) ⇒ Object

:nodoc:



274
275
276
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 274

def quote_table_name(name) #:nodoc:
  @quoted_table_names[name] ||= quote_column_name(name).gsub('.', '`.`')
end

#quoted_falseObject



282
283
284
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 282

def quoted_false
  QUOTED_FALSE
end

#quoted_trueObject



278
279
280
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 278

def quoted_true
  QUOTED_TRUE
end

#recreate_database(name, options = {}) ⇒ Object

Drops the database specified on the name attribute and creates it again using the provided options.



361
362
363
364
365
366
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 361

def recreate_database(name, options = {})
  drop_database(name)
  sql = create_database(name, options)
  reconnect!
  sql
end

#rename_column(table_name, column_name, new_column_name) ⇒ Object

:nodoc:



526
527
528
529
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 526

def rename_column(table_name, column_name, new_column_name) #:nodoc:
  execute("ALTER TABLE #{quote_table_name(table_name)} #{rename_column_sql(table_name, column_name, new_column_name)}")
  rename_column_indexes(table_name, column_name, new_column_name)
end

#rename_index(table_name, old_name, new_name) ⇒ Object



499
500
501
502
503
504
505
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 499

def rename_index(table_name, old_name, new_name)
  if supports_rename_index?
    execute "ALTER TABLE #{quote_table_name(table_name)} RENAME INDEX #{quote_table_name(old_name)} TO #{quote_table_name(new_name)}"
  else
    super
  end
end

#rename_table(table_name, new_name) ⇒ Object

Renames a table.

Example:

rename_table('octopuses', 'octopi')


490
491
492
493
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 490

def rename_table(table_name, new_name)
  execute "RENAME TABLE #{quote_table_name(table_name)} TO #{quote_table_name(new_name)}"
  rename_table_indexes(table_name, new_name)
end

#rollback_db_transactionObject

:nodoc:



337
338
339
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 337

def rollback_db_transaction #:nodoc:
  execute "ROLLBACK"
end

#schema_creationObject



34
35
36
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 34

def schema_creation
  SchemaCreation.new self
end

#show_variable(name) ⇒ Object

SHOW VARIABLES LIKE ‘name’



577
578
579
580
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 577

def show_variable(name)
  variables = select_all("SHOW VARIABLES LIKE '#{name}'", 'SCHEMA')
  variables.first['Value'] unless variables.empty?
end

#strict_mode?Boolean

Returns:

  • (Boolean)


618
619
620
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 618

def strict_mode?
  self.class.type_cast_config_to_boolean(@config.fetch(:strict, true))
end

#supports_bulk_alter?Boolean

:nodoc:

Returns:

  • (Boolean)


201
202
203
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 201

def supports_bulk_alter? #:nodoc:
  true
end

#supports_index_sort_order?Boolean

Technically MySQL allows to create indexes with the sort order syntax but at the moment (5.5) it doesn’t yet implement them

Returns:

  • (Boolean)


207
208
209
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 207

def supports_index_sort_order?
  true
end

#supports_migrations?Boolean

Returns true, since this connection adapter supports migrations.

Returns:

  • (Boolean)


193
194
195
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 193

def supports_migrations?
  true
end

#supports_primary_key?Boolean

Returns:

  • (Boolean)


197
198
199
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 197

def supports_primary_key?
  true
end

#supports_transaction_isolation?Boolean

MySQL 4 technically support transaction isolation, but it is affected by a bug where the transaction level gets persisted for the whole session:

bugs.mysql.com/bug.php?id=39170

Returns:

  • (Boolean)


226
227
228
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 226

def supports_transaction_isolation?
  version[0] >= 5
end

#table_exists?(name) ⇒ Boolean

Returns:

  • (Boolean)


416
417
418
419
420
421
422
423
424
425
426
427
428
429
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 416

def table_exists?(name)
  return false unless name
  return true if tables(nil, nil, name).any?

  name          = name.to_s
  schema, table = name.split('.', 2)

  unless table # A table was provided without a schema
    table  = schema
    schema = nil
  end

  tables(nil, schema, table).any?
end

#tables(name = nil, database = nil, like = nil) ⇒ Object

:nodoc:



405
406
407
408
409
410
411
412
413
414
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 405

def tables(name = nil, database = nil, like = nil) #:nodoc:
  sql = "SHOW TABLES "
  sql << "IN #{quote_table_name(database)} " if database
  sql << "LIKE #{quote(like)}" if like

  execute_and_free(sql, 'SCHEMA') do |result|
    #binding.pry
    result.collect { |field| field.first }
  end
end

#type_cast(value, column) ⇒ Object



211
212
213
214
215
216
217
218
219
220
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 211

def type_cast(value, column)
  case value
  when TrueClass
    1
  when FalseClass
    0
  else
    super
  end
end

#type_to_sql(type, limit = nil, precision = nil, scale = nil) ⇒ Object

Maps logical Rails types to MySQL-specific data types.



537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 537

def type_to_sql(type, limit = nil, precision = nil, scale = nil)
  case type.to_s
  when 'binary'
    case limit
    when 0..0xfff;           "varbinary(#{limit})"
    when nil;                "blob"
    when 0x1000..0xffffffff; "blob(#{limit})"
    else raise(ActiveRecordError, "No binary type has character length #{limit}")
    end
  when 'integer'
    case limit
    when 1; 'tinyint'
    when 2; 'smallint'
    when 3; 'mediumint'
    when nil, 4, 11; 'int(11)'  # compatibility with MySQL default
    when 5..8; 'bigint'
    else raise(ActiveRecordError, "No integer type has byte size #{limit}")
    end
  when 'text'
    case limit
    when 0..0xff;               'tinytext'
    when nil, 0x100..0xffff;    'text'
    when 0x10000..0xffffff;     'mediumtext'
    when 0x1000000..0xffffffff; 'longtext'
    else raise(ActiveRecordError, "No text type has character length #{limit}")
    end
  else
    super
  end
end

#update_sql(sql, name = nil) ⇒ Object

:nodoc:



319
320
321
322
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 319

def update_sql(sql, name = nil) #:nodoc:
  super
  @connection.affected_rows
end

#valid_type?(type) ⇒ Boolean

Returns:

  • (Boolean)


622
623
624
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 622

def valid_type?(type)
  !native_database_types[type].nil?
end