diff options
author | Rajarshi Das <rajarshi2576@gmail.com> | 2015-12-20 12:02:17 +0530 |
---|---|---|
committer | Rajarshi Das <rajarshi2576@gmail.com> | 2015-12-20 22:29:33 +0530 |
commit | d88cc3454e90ef7d60b160f5294a996877e182e8 (patch) | |
tree | b8039977bef65d2ec6579a843a74a2b4e2a78e2f | |
parent | cf8621a3e9676f0c62d84dc42797e75bc6ab1a1d (diff) | |
download | rails-d88cc3454e90ef7d60b160f5294a996877e182e8.tar.gz rails-d88cc3454e90ef7d60b160f5294a996877e182e8.tar.bz2 rails-d88cc3454e90ef7d60b160f5294a996877e182e8.zip |
mysql2 adapter instead of mysql [ci skip]
3 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb b/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb index 9ec0a67c8f..bcc41acaa1 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb @@ -93,7 +93,7 @@ module ActiveRecord # Override to return the quoted table name for assignment. Defaults to # table quoting. # - # This works for mysql and mysql2 where table.column can be used to + # This works for mysql2 where table.column can be used to # resolve ambiguity. # # We override this in the sqlite3 and postgresql adapters to use only diff --git a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb index f8c9e13392..6b73647492 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb @@ -106,7 +106,7 @@ module ActiveRecord ## # :singleton-method: - # By default, the MysqlAdapter will consider all columns of type <tt>tinyint(1)</tt> + # By default, the Mysql2Adapter will consider all columns of type <tt>tinyint(1)</tt> # 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: @@ -400,7 +400,7 @@ module ActiveRecord log(sql, name) { @connection.query(sql) } end - # MysqlAdapter has to free a result after using it, so we use this method to write + # Mysql2Adapter 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. def execute_and_free(sql, name = nil) #:nodoc: diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 5f4fd0f31b..756cb5bba0 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -319,7 +319,7 @@ All these configuration options are delegated to the `I18n` library. The MySQL adapter adds one additional configuration option: -* `ActiveRecord::ConnectionAdapters::MysqlAdapter.emulate_booleans` controls whether Active Record will consider all `tinyint(1)` columns in a MySQL database to be booleans and is true by default. +* `ActiveRecord::ConnectionAdapters::Mysql[2]Adapter.emulate_booleans` controls whether Active Record will consider all `tinyint(1)` columns in a MySQL database to be booleans and is true by default. The schema dumper adds one additional configuration option: |