aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/sql_types_test.rb
blob: d6e7f29a5c5c92b62d3a7ba91e6b27236ae0da31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "cases/helper"

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", type_to_sql(:binary, 4096)
    assert_equal "blob", type_to_sql(:binary)
  end

  def type_to_sql(type, limit = nil)
    ActiveRecord::Base.connection.type_to_sql(type, limit: limit)
  end
end