aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/connection_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremykemper@gmail.com>2014-08-30 09:32:50 -0700
committerJeremy Kemper <jeremykemper@gmail.com>2014-08-30 10:07:07 -0700
commitd5ad2037455a03261d680d143257ba253d8a7112 (patch)
treea5107d1d5d5c37b8750f1ea7e309f35dae76480b /activerecord/test/cases/adapters/mysql2/connection_test.rb
parent39f3495ebc40e867ad39c006eac08638ff41398d (diff)
downloadrails-d5ad2037455a03261d680d143257ba253d8a7112.tar.gz
rails-d5ad2037455a03261d680d143257ba253d8a7112.tar.bz2
rails-d5ad2037455a03261d680d143257ba253d8a7112.zip
MySQL: set connection collation along with the charset
Sets the connection collation to the database collation configured in database.yml. Otherwise, `SET NAMES utf8mb4` will use the default collation for that charset (utf8mb4_general_ci) when you may have chosen a different collation, like utf8mb4_unicode_ci. This only applies to literal string comparisons, not column values, so it is unlikely to affect you.
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2/connection_test.rb')
-rw-r--r--activerecord/test/cases/adapters/mysql2/connection_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/connection_test.rb b/activerecord/test/cases/adapters/mysql2/connection_test.rb
index beedb4f3a1..0b2f59b0eb 100644
--- a/activerecord/test/cases/adapters/mysql2/connection_test.rb
+++ b/activerecord/test/cases/adapters/mysql2/connection_test.rb
@@ -52,6 +52,11 @@ class MysqlConnectionTest < ActiveRecord::TestCase
assert @connection.active?
end
+ def test_mysql_connection_collation_is_configured
+ assert_equal 'utf8_unicode_ci', @connection.show_variable('collation_connection')
+ assert_equal 'utf8_general_ci', ARUnit2Model.connection.show_variable('collation_connection')
+ end
+
# TODO: Below is a straight up copy/paste from mysql/connection_test.rb
# I'm not sure what the correct way is to share these tests between
# adapters in minitest.