提交 11199051 编写于 作者: S Sean Griffin

Push limit to type objects

Columns and injected types no longer have any conditionals based on the
format of SQL type strings! Hooray!
上级 8e4d014a
......@@ -374,21 +374,23 @@ def lookup_cast_type(sql_type) # :nodoc:
end
def initialize_type_map(m) # :nodoc:
m.register_type %r(boolean)i, Type::Boolean.new
m.register_type %r(char)i, Type::String.new
m.register_type %r(binary)i, Type::Binary.new
m.alias_type %r(blob)i, 'binary'
m.register_type %r(text)i, Type::Text.new
m.alias_type %r(clob)i, 'text'
m.register_type %r(date)i, Type::Date.new
m.register_type %r(time)i, Type::Time.new
m.alias_type %r(timestamp)i, 'datetime'
m.register_type %r(datetime)i, Type::DateTime.new
m.alias_type %r(numeric)i, 'decimal'
m.alias_type %r(number)i, 'decimal'
m.register_type %r(float)i, Type::Float.new
m.alias_type %r(double)i, 'float'
m.register_type %r(int)i, Type::Integer.new
register_class_with_limit m, %r(boolean)i, Type::Boolean
register_class_with_limit m, %r(char)i, Type::String
register_class_with_limit m, %r(binary)i, Type::Binary
register_class_with_limit m, %r(text)i, Type::Text
register_class_with_limit m, %r(date)i, Type::Date
register_class_with_limit m, %r(time)i, Type::Time
register_class_with_limit m, %r(datetime)i, Type::DateTime
register_class_with_limit m, %r(float)i, Type::Float
register_class_with_limit m, %r(int)i, Type::Integer
m.alias_type %r(blob)i, 'binary'
m.alias_type %r(clob)i, 'text'
m.alias_type %r(timestamp)i, 'datetime'
m.alias_type %r(numeric)i, 'decimal'
m.alias_type %r(number)i, 'decimal'
m.alias_type %r(double)i, 'float'
m.register_type(%r(decimal)i) do |sql_type|
scale = extract_scale(sql_type)
precision = extract_precision(sql_type)
......@@ -406,6 +408,13 @@ def reload_type_map # :nodoc:
initialize_type_map(type_map)
end
def register_class_with_limit(mapping, key, klass) # :nodoc:
mapping.register_type(key) do |*args|
limit = extract_limit(args.last)
klass.new(limit: limit)
end
end
def extract_scale(sql_type) # :nodoc:
case sql_type
when /\((\d+)\)/ then 0
......@@ -417,6 +426,10 @@ def extract_precision(sql_type) # :nodoc:
$1.to_i if sql_type =~ /\((\d+)(,\d+)?\)/
end
def extract_limit(sql_type) # :nodoc:
$1.to_i if sql_type =~ /\((.*)\)/
end
def translate_exception_class(e, sql)
message = "#{e.class.name}: #{e.message}: #{sql}"
@logger.error message if @logger
......
......@@ -86,44 +86,12 @@ def blob_or_text_column?
sql_type =~ /blob/i || type == :text
end
# Must return the relevant concrete adapter
def adapter
raise NotImplementedError
end
def case_sensitive?
collation && !collation.match(/_ci$/)
end
private
def extract_limit(sql_type)
case sql_type
when /^enum\((.+)\)/i
$1.split(',').map{|enum| enum.strip.length - 2}.max
when /blob|text/i
case sql_type
when /tiny/i
255
when /medium/i
16777215
when /long/i
2147483647 # mysql only allows 2^31-1, not 2^32-1, somewhat inconsistently with the tiny/medium/normal cases
else
super # we could return 65535 here, but we leave it undecorated by default
end
when /^bigint/i; 8
when /^int/i; 4
when /^mediumint/i; 3
when /^smallint/i; 2
when /^tinyint/i; 1
when /^float/i; 24
when /^double/i; 53
else
super
end
end
# MySQL misreports NOT NULL column default when none is given.
# We can't detect this for columns which may have a legitimate ''
# default (string) but we can for others (integer, datetime, boolean,
......@@ -636,10 +604,29 @@ def valid_type?(type)
protected
def initialize_type_map(m)
def initialize_type_map(m) # :nodoc:
super
m.register_type(%r(enum)i) do |sql_type|
limit = sql_type[/^enum\((.+)\)/i, 1]
.split(',').map{|enum| enum.strip.length - 2}.max
Type::String.new(limit: limit)
end
m.register_type %r(tinytext)i, Type::Text.new(limit: 255)
m.register_type %r(tinyblob)i, Type::Binary.new(limit: 255)
m.register_type %r(mediumtext)i, Type::Text.new(limit: 16777215)
m.register_type %r(mediumblob)i, Type::Binary.new(limit: 16777215)
m.register_type %r(longtext)i, Type::Text.new(limit: 2147483647)
m.register_type %r(longblob)i, Type::Binary.new(limit: 2147483647)
m.register_type %r(^bigint)i, Type::Integer.new(limit: 8)
m.register_type %r(^int)i, Type::Integer.new(limit: 4)
m.register_type %r(^mediumint)i, Type::Integer.new(limit: 3)
m.register_type %r(^smallint)i, Type::Integer.new(limit: 2)
m.register_type %r(^tinyint)i, Type::Integer.new(limit: 1)
m.register_type %r(^float)i, Type::Float.new(limit: 24)
m.register_type %r(^double)i, Type::Float.new(limit: 53)
m.alias_type %r(tinyint\(1\))i, 'boolean' if emulate_booleans
m.alias_type %r(enum)i, 'varchar'
m.alias_type %r(set)i, 'varchar'
m.alias_type %r(year)i, 'integer'
m.alias_type %r(bit)i, 'binary'
......
......@@ -13,12 +13,12 @@ module Format
ISO_DATETIME = /\A(\d{4})-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)(\.\d+)?\z/
end
attr_reader :name, :default, :cast_type, :limit, :null, :sql_type, :default_function
attr_reader :name, :default, :cast_type, :null, :sql_type, :default_function
attr_accessor :primary, :coder
alias :encoded? :coder
delegate :type, :precision, :scale, :klass, :text?, :number?, :binary?, :type_cast_for_write, to: :cast_type
delegate :type, :precision, :scale, :limit, :klass, :text?, :number?, :binary?, :type_cast_for_write, to: :cast_type
# Instantiates a new column in the table.
#
......@@ -34,7 +34,6 @@ def initialize(name, default, cast_type, sql_type = nil, null = true)
@cast_type = cast_type
@sql_type = sql_type
@null = null
@limit = extract_limit(sql_type)
@default = extract_default(default)
@default_function = nil
@primary = nil
......@@ -65,11 +64,6 @@ def human_name
def extract_default(default)
type_cast(default)
end
private
def extract_limit(sql_type)
$1.to_i if sql_type =~ /\((.*)\)/
end
end
end
# :startdoc:
......
......@@ -110,15 +110,6 @@ def accessor
def has_default_function?(default_value, default)
!default_value && (%r{\w+\(.*\)} === default)
end
def extract_limit(sql_type)
case sql_type
when /^bigint/i; 8
when /^smallint/i; 2
when /^timestamp/i; nil
else super
end
end
end
end
end
......@@ -569,14 +569,14 @@ def normalize_oid_type(ftype, fmod)
end
def initialize_type_map(m)
m.register_type 'int2', OID::Integer.new
register_class_with_limit m, 'int2', OID::Integer
m.alias_type 'int4', 'int2'
m.alias_type 'int8', 'int2'
m.alias_type 'oid', 'int2'
m.register_type 'float4', OID::Float.new
m.alias_type 'float8', 'float4'
m.register_type 'text', Type::Text.new
m.register_type 'varchar', Type::String.new
register_class_with_limit m, 'varchar', Type::String
m.alias_type 'char', 'varchar'
m.alias_type 'name', 'varchar'
m.alias_type 'bpchar', 'varchar'
......@@ -629,6 +629,14 @@ def initialize_type_map(m)
load_additional_types(m)
end
def extract_limit(sql_type) # :nodoc:
case sql_type
when /^bigint/i; 8
when /^smallint/i; 2
else super
end
end
def load_additional_types(type_map, oids = nil)
if supports_ranges?
query = <<-SQL
......
......@@ -2,12 +2,13 @@ module ActiveRecord
module ConnectionAdapters
module Type
class Value # :nodoc:
attr_reader :precision, :scale
attr_reader :precision, :scale, :limit
def initialize(options = {})
options.assert_valid_keys(:precision, :scale)
options.assert_valid_keys(:precision, :scale, :limit)
@precision = options[:precision]
@scale = options[:scale]
@limit = options[:limit]
end
def type; end
......
......@@ -34,7 +34,7 @@ def test_type_case_coded_column
# Avoid column definitions in create table statements like:
# `title` varchar(255) DEFAULT NULL
def test_should_not_include_default_clause_when_default_is_null
column = Column.new("title", nil, Type::String.new, "varchar(20)")
column = Column.new("title", nil, Type::String.new(limit: 20))
column_def = ColumnDefinition.new(
column.name, "string",
column.limit, column.precision, column.scale, column.default, column.null)
......@@ -42,7 +42,7 @@ def test_should_not_include_default_clause_when_default_is_null
end
def test_should_include_default_clause_when_default_is_present
column = Column.new("title", "Hello", Type::String.new, "varchar(20)")
column = Column.new("title", "Hello", Type::String.new(limit: 20))
column_def = ColumnDefinition.new(
column.name, "string",
column.limit, column.precision, column.scale, column.default, column.null)
......@@ -50,7 +50,7 @@ def test_should_include_default_clause_when_default_is_present
end
def test_should_specify_not_null_if_null_option_is_false
column = Column.new("title", "Hello", Type::String.new, "varchar(20)", false)
column = Column.new("title", "Hello", Type::String.new(limit: 20), "varchar(20)", false)
column_def = ColumnDefinition.new(
column.name, "string",
column.limit, column.precision, column.scale, column.default, column.null)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册