aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-10-20 14:01:54 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-10-20 14:01:54 -0600
commitee865eb244c8db11dcfbadbce0994d3c6488e7ec (patch)
tree35251657b9401fa7fab66980769b25876c22cfd5 /activerecord/test/cases/adapters/mysql2
parentcbfe5bb3c40956a0481b7c3d10177b8c68e63aaa (diff)
parentf8438ae336f8f7d38c83a178d6ab6a9af635ee6c (diff)
downloadrails-ee865eb244c8db11dcfbadbce0994d3c6488e7ec.tar.gz
rails-ee865eb244c8db11dcfbadbce0994d3c6488e7ec.tar.bz2
rails-ee865eb244c8db11dcfbadbce0994d3c6488e7ec.zip
Merge pull request #21962 from kamipo/fix_tinyblob
Fix to correctly schema dump the `tinyblob`
Diffstat (limited to 'activerecord/test/cases/adapters/mysql2')
-rw-r--r--activerecord/test/cases/adapters/mysql2/sql_types_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapters/mysql2/sql_types_test.rb b/activerecord/test/cases/adapters/mysql2/sql_types_test.rb
index ae505d29c9..4926bc2267 100644
--- a/activerecord/test/cases/adapters/mysql2/sql_types_test.rb
+++ b/activerecord/test/cases/adapters/mysql2/sql_types_test.rb
@@ -4,7 +4,7 @@ class Mysql2SqlTypesTest < ActiveRecord::Mysql2TestCase
def test_binary_types
assert_equal 'varbinary(64)', type_to_sql(:binary, 64)
assert_equal 'varbinary(4095)', type_to_sql(:binary, 4095)
- assert_equal 'blob(4096)', type_to_sql(:binary, 4096)
+ assert_equal 'blob', type_to_sql(:binary, 4096)
assert_equal 'blob', type_to_sql(:binary)
end