aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/adapters/mysql2/sql_types_test.rb
blob: e10642cbb45fa04aa4a2dc30ee4bd1d8e2e81aff (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                             

                      
                                                       
                       



                                                              

     

                                                                 

     
# frozen_string_literal: true

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